Class AppendCellsRequest
Adds new cells after the last row with data in a sheet, inserting new rows into the sheet if necessary.
Inheritance
System.Object
AppendCellsRequest
Implements
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class AppendCellsRequest : 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
[JsonProperty("fields")]
public virtual object Fields { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
Rows
The data to append.
Declaration
[JsonProperty("rows")]
public virtual IList<RowData> Rows { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<RowData> |
SheetId
The sheet ID to append the data to.
Declaration
[JsonProperty("sheetId")]
public virtual int? SheetId { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |