pub struct SpreadsheetProperties {
pub auto_recalc: Option<String>,
pub default_format: Option<CellFormat>,
pub import_functions_external_url_access_allowed: Option<bool>,
pub iterative_calculation_settings: Option<IterativeCalculationSettings>,
pub locale: Option<String>,
pub spreadsheet_theme: Option<SpreadsheetTheme>,
pub time_zone: Option<String>,
pub title: Option<String>,
}Expand description
Properties of a spreadsheet.
This type is not used in any activity, and only used as part of another schema.
Fields§
§auto_recalc: Option<String>The amount of time to wait before volatile functions are recalculated.
default_format: Option<CellFormat>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.
import_functions_external_url_access_allowed: Option<bool>Whether to allow external URL access for image and import functions. Read only when true. When false, you can set to true. This value will be bypassed and always return true if the admin has enabled the allowlisting feature.
iterative_calculation_settings: Option<IterativeCalculationSettings>Determines whether and how circular references are resolved with iterative calculation. Absence of this field means that circular references result in calculation errors.
locale: Option<String>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.
spreadsheet_theme: Option<SpreadsheetTheme>Theme applied to the spreadsheet.
time_zone: Option<String>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.
title: Option<String>The title of the spreadsheet.
Trait Implementations§
Source§impl Clone for SpreadsheetProperties
impl Clone for SpreadsheetProperties
Source§fn clone(&self) -> SpreadsheetProperties
fn clone(&self) -> SpreadsheetProperties
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more