Class UpdateCellsRequest
Updates all cells in a range with new data.
Inheritance
System.Object
UpdateCellsRequest
Implements
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class UpdateCellsRequest : object, IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| System.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
public virtual object Fields { get; set; }
Property Value
| Type | Description |
|---|---|
| System.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
public virtual GridRange Range { get; set; }
Property Value
| Type | Description |
|---|---|
| GridRange |
Rows
The data to write.
Declaration
public virtual IList<RowData> Rows { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.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
public virtual GridCoordinate Start { get; set; }
Property Value
| Type | Description |
|---|---|
| GridCoordinate |