Show / Hide Table of Contents

Class TableRange

A table range represents a reference to a subset of a table. It's important to note that the cells specified by a table range do not necessarily form a rectangle. For example, let's say we have a 3 x 3 table where all the cells of the last row are merged together. The table looks like this: [ ] A table range with location = (0, 0), row span = 3 and column span = 2 specifies the following cells: x x [ x x x ]

Inheritance
System.Object
TableRange
Implements
Google.Apis.Requests.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 TableRange : IDirectResponseSchema

Properties

ColumnSpan

The column span of the table range.

Declaration
[JsonProperty("columnSpan")]
public virtual int? ColumnSpan { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

ETag

The ETag of the item.

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

Location

The starting location of the table range.

Declaration
[JsonProperty("location")]
public virtual TableCellLocation Location { get; set; }
Property Value
Type Description
TableCellLocation

RowSpan

The row span of the table range.

Declaration
[JsonProperty("rowSpan")]
public virtual int? RowSpan { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top