Show / Hide Table of Contents

Class DataSourceObjectReference

Reference to a data source object.

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

Properties

ChartId

References to a data source chart.

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

DataSourceFormulaCell

References to a cell containing DataSourceFormula.

Declaration
[JsonProperty("dataSourceFormulaCell")]
public virtual GridCoordinate DataSourceFormulaCell { get; set; }
Property Value
Type Description
GridCoordinate

DataSourcePivotTableAnchorCell

References to a data source PivotTable anchored at the cell.

Declaration
[JsonProperty("dataSourcePivotTableAnchorCell")]
public virtual GridCoordinate DataSourcePivotTableAnchorCell { get; set; }
Property Value
Type Description
GridCoordinate

DataSourceTableAnchorCell

References to a DataSourceTable anchored at the cell.

Declaration
[JsonProperty("dataSourceTableAnchorCell")]
public virtual GridCoordinate DataSourceTableAnchorCell { get; set; }
Property Value
Type Description
GridCoordinate

ETag

The ETag of the item.

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

SheetId

References to a DATA_SOURCE sheet.

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

Implements

IDirectResponseSchema
In This Article
Back to top