Show / Hide Table of Contents

Class GridProperties

Properties of a grid.

Inheritance
System.Object
GridProperties
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 GridProperties : IDirectResponseSchema

Properties

ColumnCount

The number of columns in the grid.

Declaration
[JsonProperty("columnCount")]
public virtual 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
[JsonProperty("columnGroupControlAfter")]
public virtual 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
[JsonProperty("frozenColumnCount")]
public virtual int? FrozenColumnCount { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

FrozenRowCount

The number of rows that are frozen in the grid.

Declaration
[JsonProperty("frozenRowCount")]
public virtual 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
[JsonProperty("hideGridlines")]
public virtual bool? HideGridlines { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

RowCount

The number of rows in the grid.

Declaration
[JsonProperty("rowCount")]
public virtual 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
[JsonProperty("rowGroupControlAfter")]
public virtual bool? RowGroupControlAfter { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Implements

IDirectResponseSchema
In This Article
Back to top