Show / Hide Table of Contents

Class GridCoordinate

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

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

Properties

ColumnIndex

The column index of the coordinate.

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

SheetId

The sheet this coordinate is on.

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

Implements

IDirectResponseSchema
In This Article
Back to top