Show / Hide Table of Contents

Class GridCoordinate

A coordinate in a sheet. All indexes are zero-based.

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

Properties

ColumnIndex

The column index of the coordinate.

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

ETag

The ETag of the item.

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

RowIndex

The row index of the coordinate.

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

SheetId

The sheet this coordinate is on.

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

Implements

IDirectResponseSchema
Back to top