Show / Hide Table of Contents

Class GridData

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

Inheritance
System.Object
GridData
Implements
IDirectResponseSchema
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class GridData : object, IDirectResponseSchema

Properties

ColumnMetadata

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

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

StartRow

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

Declaration
public virtual Nullable<int> StartRow { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Implements

IDirectResponseSchema
Back to top