Show / Hide Table of Contents

Class Table

A PageElement kind representing a table.

Inheritance
object
Table
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Slides.v1.Data
Assembly: Google.Apis.Slides.v1.dll
Syntax
public class Table : IDirectResponseSchema

Properties

Columns

Number of columns in the table.

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

HorizontalBorderRows

Properties of horizontal cell borders. A table's horizontal cell borders are represented as a grid. The grid has one more row than the number of rows in the table and the same number of columns as the table. For example, if the table is 3 x 3, its horizontal borders will be represented as a grid with 4 rows and 3 columns.

Declaration
[JsonProperty("horizontalBorderRows")]
public virtual IList<TableBorderRow> HorizontalBorderRows { get; set; }
Property Value
Type Description
IList<TableBorderRow>

Rows

Number of rows in the table.

Declaration
[JsonProperty("rows")]
public virtual int? Rows { get; set; }
Property Value
Type Description
int?

TableColumns

Properties of each column.

Declaration
[JsonProperty("tableColumns")]
public virtual IList<TableColumnProperties> TableColumns { get; set; }
Property Value
Type Description
IList<TableColumnProperties>

TableRows

Properties and contents of each row. Cells that span multiple rows are contained in only one of these rows and have a row_span greater than 1.

Declaration
[JsonProperty("tableRows")]
public virtual IList<TableRow> TableRows { get; set; }
Property Value
Type Description
IList<TableRow>

VerticalBorderRows

Properties of vertical cell borders. A table's vertical cell borders are represented as a grid. The grid has the same number of rows as the table and one more column than the number of columns in the table. For example, if the table is 3 x 3, its vertical borders will be represented as a grid with 3 rows and 4 columns.

Declaration
[JsonProperty("verticalBorderRows")]
public virtual IList<TableBorderRow> VerticalBorderRows { get; set; }
Property Value
Type Description
IList<TableBorderRow>

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX