Show / Hide Table of Contents

Class TableRow

Properties and contents of each row in a table.

Inheritance
System.Object
TableRow
Implements
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 TableRow : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

RowHeight

Height of a row.

Declaration
[JsonProperty("rowHeight")]
public virtual Dimension RowHeight { get; set; }
Property Value
Type Description
Dimension

TableCells

Properties and contents of each cell.

Cells that span multiple columns are represented only once with a column_span greater than 1. As a result, the length of this collection does not always match the number of columns of the entire table.

Declaration
[JsonProperty("tableCells")]
public virtual IList<TableCell> TableCells { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<TableCell>

TableRowProperties

Properties of the row.

Declaration
[JsonProperty("tableRowProperties")]
public virtual TableRowProperties TableRowProperties { get; set; }
Property Value
Type Description
TableRowProperties

Implements

IDirectResponseSchema
Back to top