Show / Hide Table of Contents

Class DimensionProperties

Properties about a dimension.

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

Properties

DataSourceColumnReference

Output only. If set, this is a column in a data source sheet.

Declaration
[JsonProperty("dataSourceColumnReference")]
public virtual DataSourceColumnReference DataSourceColumnReference { get; set; }
Property Value
Type Description
DataSourceColumnReference

DeveloperMetadata

The developer metadata associated with a single row or column.

Declaration
[JsonProperty("developerMetadata")]
public virtual IList<DeveloperMetadata> DeveloperMetadata { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<DeveloperMetadata>

ETag

The ETag of the item.

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

HiddenByFilter

True if this dimension is being filtered. This field is read-only.

Declaration
[JsonProperty("hiddenByFilter")]
public virtual bool? HiddenByFilter { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

HiddenByUser

True if this dimension is explicitly hidden.

Declaration
[JsonProperty("hiddenByUser")]
public virtual bool? HiddenByUser { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

PixelSize

The height (if a row) or width (if a column) of the dimension in pixels.

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

Implements

IDirectResponseSchema
In This Article
Back to top