Class InsertTableRowsRequest
Inserts rows into a table.
Inheritance
System.Object
InsertTableRowsRequest
Implements
Google.Apis.Requests.IDirectResponseSchema
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.Slides.v1.Data
Assembly: Google.Apis.Slides.v1.dll
Syntax
public class InsertTableRowsRequest : IDirectResponseSchema
Properties
CellLocation
The reference table cell location from which rows will be inserted. A new row will be inserted above (or below) the row where the reference cell is. If the reference cell is a merged cell, a new row will be inserted above (or below) the merged cell.
Declaration
[JsonProperty("cellLocation")]
public virtual TableCellLocation CellLocation { get; set; }
Property Value
| Type | Description |
|---|---|
| TableCellLocation |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
InsertBelow
Whether to insert new rows below the reference cell location. - True: insert below the cell. - False:
insert above the cell.
Declaration
[JsonProperty("insertBelow")]
public virtual bool? InsertBelow { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Boolean> |
Number
The number of rows to be inserted. Maximum 20 per request.
Declaration
[JsonProperty("number")]
public virtual int? Number { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Int32> |
TableObjectId
The table to insert rows into.
Declaration
[JsonProperty("tableObjectId")]
public virtual string TableObjectId { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Implements
Google.Apis.Requests.IDirectResponseSchema