Class InsertTableRowRequest
Inserts an empty row into a table.
Implements
Inherited Members
Namespace: Google.Apis.Docs.v1.Data
Assembly: Google.Apis.Docs.v1.dll
Syntax
public class InsertTableRowRequest : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
InsertBelow
Whether to insert new row 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 |
---|---|
bool? |
TableCellLocation
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("tableCellLocation")]
public virtual TableCellLocation TableCellLocation { get; set; }
Property Value
Type | Description |
---|---|
TableCellLocation |