Show / Hide Table of Contents

Class GridProperties

Properties of a grid.

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

Properties

ColumnCount

The number of columns in the grid.

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

ColumnGroupControlAfter

True if the column grouping control toggle is shown after the group.

Declaration
public virtual Nullable<bool> ColumnGroupControlAfter { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ETag

The ETag of the item.

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

FrozenColumnCount

The number of columns that are frozen in the grid.

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

FrozenRowCount

The number of rows that are frozen in the grid.

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

HideGridlines

True if the grid isn't showing gridlines in the UI.

Declaration
public virtual Nullable<bool> HideGridlines { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

RowCount

The number of rows in the grid.

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

RowGroupControlAfter

True if the row grouping control toggle is shown after the group.

Declaration
public virtual Nullable<bool> RowGroupControlAfter { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Implements

IDirectResponseSchema
Back to top