ColumnMut
Overview
ColumnMut is a struct in Aspose.Cells FOSS for Rust.
Represents column.
This struct provides 12 methods for working with ColumnMut objects in Rust programs.
Available methods include: clear_width, get_index, get_is_hidden, get_width, hide, index, is_hidden, properties, set_is_hidden, set_width, show, width.
All public members are accessible to any Rust application after installing the Aspose.Cells FOSS for Rust package.
Methods
| Signature | Description |
|---|---|
index() → u32 | Gets the associated value. |
get_index() → u32 | Gets the associated value. |
properties() → Option<ColumnProperties> | Gets stored column properties for this column, if present. |
width() → Option<f64> | Gets the width. |
get_width() → Option<f64> | Gets the width. |
is_hidden() → bool | Gets a value indicating whether hidden. |
get_is_hidden() → bool | Gets a value indicating whether hidden. |
set_width(width: f64) → Result<(), CellsError> | Sets the width. |
clear_width() → Result<(), CellsError> | Clears width. |
set_is_hidden(value: bool) → Result<(), CellsError> | Sets a value indicating whether hidden. |
hide() → Result<(), CellsError> | Hides this item. |
show() → Result<(), CellsError> | Shows this item. |