Show / Hide Table of Contents

Class GridData

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

Inheritance
System.Object
GridData
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.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
System.Collections.Generic.IList<DimensionProperties>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.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
System.Collections.Generic.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
System.Collections.Generic.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
System.Nullable<System.Int32>

StartRow

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

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

Implements

IDirectResponseSchema
In This Article
Back to top