Class TableRow
The contents and style of a row in a Table.
Implements
Inherited Members
Namespace: Google.Apis.Docs.v1.Data
Assembly: Google.Apis.Docs.v1.dll
Syntax
public class TableRow : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
EndIndex
The zero-based end index of this row, exclusive, in UTF-16 code units.
Declaration
[JsonProperty("endIndex")]
public virtual int? EndIndex { get; set; }
Property Value
Type | Description |
---|---|
int? |
StartIndex
The zero-based start index of this row, in UTF-16 code units.
Declaration
[JsonProperty("startIndex")]
public virtual int? StartIndex { get; set; }
Property Value
Type | Description |
---|---|
int? |
SuggestedDeletionIds
The suggested deletion IDs. If empty, then there are no suggested deletions of this content.
Declaration
[JsonProperty("suggestedDeletionIds")]
public virtual IList<string> SuggestedDeletionIds { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
SuggestedInsertionIds
The suggested insertion IDs. A TableRow may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.
Declaration
[JsonProperty("suggestedInsertionIds")]
public virtual IList<string> SuggestedInsertionIds { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
SuggestedTableRowStyleChanges
The suggested style changes to this row, keyed by suggestion ID.
Declaration
[JsonProperty("suggestedTableRowStyleChanges")]
public virtual IDictionary<string, SuggestedTableRowStyle> SuggestedTableRowStyleChanges { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<string, SuggestedTableRowStyle> |
TableCells
The contents and style of each cell in this row. It's possible for a table to be non-rectangular, so some rows may have a different number of cells than other rows in the same table.
Declaration
[JsonProperty("tableCells")]
public virtual IList<TableCell> TableCells { get; set; }
Property Value
Type | Description |
---|---|
IList<TableCell> |
TableRowStyle
The style of the table row.
Declaration
[JsonProperty("tableRowStyle")]
public virtual TableRowStyle TableRowStyle { get; set; }
Property Value
Type | Description |
---|---|
TableRowStyle |