Show / Hide Table of Contents

Class GridData

Data in the grid, as well as metadata about the dimensions.

Inheritance
object
GridData
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.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class GridData : IDirectResponseSchema

Properties

ColumnMetadata

Metadata about the requested columns in the grid, starting with the column in start_column.

Declaration
[JsonProperty("columnMetadata")]
public virtual IList<DimensionProperties> ColumnMetadata { get; set; }
Property Value
Type Description
IList<DimensionProperties>

ETag

The ETag of the item.

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

RowData

The data in the grid, one entry per row, starting with the row in startRow. The values in RowData will correspond to columns starting at start_column.

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

RowMetadata

Metadata about the requested rows in the grid, starting with the row in start_row.

Declaration
[JsonProperty("rowMetadata")]
public virtual IList<DimensionProperties> RowMetadata { get; set; }
Property Value
Type Description
IList<DimensionProperties>

StartColumn

The first column this GridData refers to, zero-based.

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

StartRow

The first row this GridData refers to, zero-based.

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

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX