Show / Hide Table of Contents

Class DimensionRange

A range along a single dimension on a sheet. All indexes are zero-based. Indexes are half open: the start index is inclusive and the end index is exclusive. Missing indexes indicate the range is unbounded on that side.

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

Properties

Dimension

The dimension of the span.

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

EndIndex

The end (exclusive) of the span, or not set if unbounded.

Declaration
public virtual Nullable<int> EndIndex { 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

SheetId

The sheet this span is on.

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

StartIndex

The start (inclusive) of the span, or not set if unbounded.

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

Implements

IDirectResponseSchema
Back to top