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 table cell location = (table_start_location, row = 0, column = 0), row span = 3 and column span = 2 specifies the following cells: x x [ x x x ]
Implements
Inherited Members
Namespace: Google.Apis.Docs.v1.Data
Assembly: Google.Apis.Docs.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 |
RowSpan
The row span of the table range.
Declaration
[JsonProperty("rowSpan")]
public virtual int? RowSpan { get; set; }
Property Value
Type | Description |
---|---|
int? |
TableCellLocation
The cell location where the table range starts.
Declaration
[JsonProperty("tableCellLocation")]
public virtual TableCellLocation TableCellLocation { get; set; }
Property Value
Type | Description |
---|---|
TableCellLocation |