Class Table
A StructuralElement representing a table.
Implements
Inherited Members
Namespace: Google.Apis.Docs.v1.Data
Assembly: Google.Apis.Docs.v1.dll
Syntax
public class Table : IDirectResponseSchema
Properties
Columns
Number of columns in the table. It's possible for a table to be non-rectangular, so some rows may have a different number of cells.
Declaration
[JsonProperty("columns")]
public virtual int? Columns { get; set; }
Property Value
Type | Description |
---|---|
int? |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Rows
Number of rows in the table.
Declaration
[JsonProperty("rows")]
public virtual int? Rows { 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 Table 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> |
TableRows
The contents and style of each row.
Declaration
[JsonProperty("tableRows")]
public virtual IList<TableRow> TableRows { get; set; }
Property Value
Type | Description |
---|---|
IList<TableRow> |
TableStyle
The style of the table.
Declaration
[JsonProperty("tableStyle")]
public virtual TableStyle TableStyle { get; set; }
Property Value
Type | Description |
---|---|
TableStyle |