Show / Hide Table of Contents

Class SpreadsheetProperties

Properties of a spreadsheet.

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

Properties

AutoRecalc

The amount of time to wait before volatile functions are recalculated.

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

DefaultFormat

The default format of all cells in the spreadsheet. CellData.effectiveFormat will not be set if the cell's format is equal to this default format. This field is read-only.

Declaration
[JsonProperty("defaultFormat")]
public virtual CellFormat DefaultFormat { get; set; }
Property Value
Type Description
CellFormat

ETag

The ETag of the item.

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

IterativeCalculationSettings

Determines whether and how circular references are resolved with iterative calculation. Absence of this field means that circular references result in calculation errors.

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

Locale

The locale of the spreadsheet in one of the following formats: * an ISO 639-1 language code such as en * an ISO 639-2 language code such as fil, if no 639-1 code exists * a combination of the ISO language code and country code, such as en_US Note: when updating this field, not all locales/languages are supported.

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

SpreadsheetTheme

Theme applied to the spreadsheet.

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

TimeZone

The time zone of the spreadsheet, in CLDR format such as America/New_York. If the time zone isn't recognized, this may be a custom time zone such as GMT-07:00.

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

Title

The title of the spreadsheet.

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

Implements

IDirectResponseSchema
In This Article
Back to top