Show / Hide Table of Contents

Class DeveloperMetadataLocation

A location where metadata may be associated in a spreadsheet.

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

Properties

DimensionRange

Represents the row or column when metadata is associated with a dimension. The specified DimensionRange must represent a single row or column; it cannot be unbounded or span multiple rows or columns.

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

ETag

The ETag of the item.

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

LocationType

The type of location this object represents. This field is read-only.

Declaration
[JsonProperty("locationType")]
public virtual string LocationType { get; set; }
Property Value
Type Description
System.String

SheetId

The ID of the sheet when metadata is associated with an entire sheet.

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

Spreadsheet

True when metadata is associated with an entire spreadsheet.

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

Implements

IDirectResponseSchema
In This Article
Back to top