WorkbookSettings

WorkbookSettings

Overview

WorkbookSettings is a struct in Aspose.Cells FOSS for Rust. Inherits from: Debug, Clone, PartialEq, and 2 more.

Represents workbook-level settings that affect date handling and display formatting.

This struct provides 9 methods for working with WorkbookSettings objects in Rust programs. Available methods include: date1904, default, get_culture, get_date1904, get_date_system, new, set_culture, set_date1904, set_date_system. All public members are accessible to any Rust application after installing the Aspose.Cells FOSS for Rust package. Fields: date_system, display_culture.

Fields

NameTypeAccessDescription
date_systemDateSystemRead/WriteGets the date system.
display_cultureStringRead/WriteGets the display culture.

Methods

SignatureDescription
default()SelfCalls default on this WorkbookSettings instance.
new()SelfInitializes a new instance.
date1904()boolGets whether the workbook uses the 1904 date system.
get_date1904()boolGets whether the workbook uses the 1904 date system.
set_date1904(value: bool)Sets whether the workbook uses the 1904 date system.
get_date_system()DateSystemGets the associated value.
set_date_system(value: DateSystem)Sets the associated value.
get_culture()&strGets the culture used for display-string formatting.
set_culture(value: impl Into<String>)Sets the culture used for display-string formatting.

See Also