DefinedName
Overview
DefinedName is a struct in Aspose.Cells FOSS for Rust.
Represents defined name.
This struct provides 10 methods for working with DefinedName objects in Rust programs.
Available methods include: get_comment, get_formula, get_local_sheet_index, get_name, is_hidden, set_comment, set_formula, set_hidden, set_local_sheet_index, set_name.
All public members are accessible to any Rust application after installing the Aspose.Cells FOSS for Rust package.
Methods
| Signature | Description |
|---|---|
get_name() → &str | Gets the name. |
set_name(value: impl Into<String>) → Result<(), CellsError> | Sets the name. |
get_formula() → &str | Gets the formula. |
set_formula(value: impl Into<String>) → Result<(), CellsError> | Sets the formula. |
get_local_sheet_index() → Option<usize> | Gets the local sheet index. |
set_local_sheet_index(value: Option<usize>) → Result<(), CellsError> | Sets the local sheet index. |
is_hidden() → bool | Returns whether hidden. |
set_hidden(value: bool) | Sets a value indicating whether hidden. |
get_comment() → &str | Gets the comment. |
set_comment(value: impl Into<String>) | Sets the comment. |