Show / Hide Table of Contents

Class BandedRange

A banded (alternating colors) range in a sheet.

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

Properties

BandedRangeId

The id of the banded range.

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

ColumnProperties

Properties for column bands. These properties are applied on a column- by-column basis throughout all the columns in the range. At least one of row_properties or column_properties must be specified.

Declaration
[JsonProperty("columnProperties")]
public virtual BandingProperties ColumnProperties { get; set; }
Property Value
Type Description
BandingProperties

ETag

The ETag of the item.

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

Range

The range over which these properties are applied.

Declaration
[JsonProperty("range")]
public virtual GridRange Range { get; set; }
Property Value
Type Description
GridRange

RowProperties

Properties for row bands. These properties are applied on a row-by-row basis throughout all the rows in the range. At least one of row_properties or column_properties must be specified.

Declaration
[JsonProperty("rowProperties")]
public virtual BandingProperties RowProperties { get; set; }
Property Value
Type Description
BandingProperties

Implements

IDirectResponseSchema
In This Article
Back to top