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

SignatureDescription
get_name()&strGets the name.
set_name(value: impl Into<String>)Result<(), CellsError>Sets the name.
get_formula()&strGets 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()boolReturns whether hidden.
set_hidden(value: bool)Sets a value indicating whether hidden.
get_comment()&strGets the comment.
set_comment(value: impl Into<String>)Sets the comment.

See Also