RowMut

Overview

RowMut is a struct in Aspose.Cells FOSS for Rust.

Represents row.

This struct provides 12 methods for working with RowMut objects in Rust programs. Available methods include: clear_height, get_height, get_index, get_is_hidden, height, hide, index, is_hidden, properties, set_height, set_is_hidden, show. All public members are accessible to any Rust application after installing the Aspose.Cells FOSS for Rust package.

Methods

SignatureDescription
index()u32Gets the associated value.
get_index()u32Gets the associated value.
properties()Option<RowProperties>Gets stored row properties for this row, if present.
height()Option<f64>Gets the height.
get_height()Option<f64>Gets the height.
is_hidden()boolGets a value indicating whether hidden.
get_is_hidden()boolGets a value indicating whether hidden.
set_height(height: f64)Result<(), CellsError>Sets the height.
clear_height()Result<(), CellsError>Clears height.
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.

See Also