Class UpdateCellsRequest
Updates all cells in a range with new data.
Implements
Inherited Members
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class UpdateCellsRequest : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Fields
The fields of CellData that should be updated. At least one field must be specified. The root is the
CellData; 'row.values.' should not be specified. A single "*"
can be used as short-hand for listing every
field.
Declaration
[JsonProperty("fields")]
public virtual object Fields { get; set; }
Property Value
Type | Description |
---|---|
object |
Range
The range to write data to. If the data in rows does not cover the entire requested range, the fields matching those set in fields will be cleared.
Declaration
[JsonProperty("range")]
public virtual GridRange Range { get; set; }
Property Value
Type | Description |
---|---|
GridRange |
Rows
The data to write.
Declaration
[JsonProperty("rows")]
public virtual IList<RowData> Rows { get; set; }
Property Value
Type | Description |
---|---|
IList<RowData> |
Start
The coordinate to start writing data at. Any number of rows and columns (including a different number of columns per row) may be written.
Declaration
[JsonProperty("start")]
public virtual GridCoordinate Start { get; set; }
Property Value
Type | Description |
---|---|
GridCoordinate |