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
object
TableRange
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 TableRange : IDirectResponseSchema

Properties

ColumnSpan

The column span of the table range.

Declaration
[JsonProperty("columnSpan")]
public virtual int? ColumnSpan { 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

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
int?

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX