Show / Hide Table of Contents

Class DeveloperMetadataLocation

A location where metadata may be associated in a spreadsheet.

Inheritance
System.Object
DeveloperMetadataLocation
Implements
IDirectResponseSchema
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class DeveloperMetadataLocation : object, 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
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
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
public virtual Nullable<int> SheetId { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Spreadsheet

True when metadata is associated with an entire spreadsheet.

Declaration
public virtual Nullable<bool> Spreadsheet { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Implements

IDirectResponseSchema
Back to top