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
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 DimensionRange : IDirectResponseSchema

Properties

Dimension

The dimension of the span.

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

Implements

IDirectResponseSchema
In This Article
Back to top