Show / Hide Table of Contents

Class SpreadsheetProperties

Properties of a spreadsheet.

Inheritance
System.Object
SpreadsheetProperties
Implements
IDirectResponseSchema
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class SpreadsheetProperties : object, IDirectResponseSchema

Properties

AutoRecalc

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

Declaration
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
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
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
public virtual string Locale { get; set; }
Property Value
Type Description
System.String

SpreadsheetTheme

Theme applied to the spreadsheet.

Declaration
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
public virtual string TimeZone { get; set; }
Property Value
Type Description
System.String

Title

The title of the spreadsheet.

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

Implements

IDirectResponseSchema
Back to top