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
| Name | Type | Access | Description |
|---|---|---|---|
date_system | DateSystem | Read/Write | Gets the date system. |
display_culture | String | Read/Write | Gets the display culture. |
Methods
| Signature | Description |
|---|---|
default() → Self | Calls default on this WorkbookSettings instance. |
new() → Self | Initializes a new instance. |
date1904() → bool | Gets whether the workbook uses the 1904 date system. |
get_date1904() → bool | Gets whether the workbook uses the 1904 date system. |
set_date1904(value: bool) | Sets whether the workbook uses the 1904 date system. |
get_date_system() → DateSystem | Gets the associated value. |
set_date_system(value: DateSystem) | Sets the associated value. |
get_culture() → &str | Gets the culture used for display-string formatting. |
set_culture(value: impl Into<String>) | Sets the culture used for display-string formatting. |