CellArea

Overview

CellArea is a struct in Aspose.Cells FOSS for Rust. Inherits from: Debug, Default, Clone, and 4 more.

Represents cell area.

This struct provides 4 methods for working with CellArea objects in Rust programs. Available methods include: compare_to, create_cell_area, create_cell_area_a1, fmt. All public members are accessible to any Rust application after installing the Aspose.Cells FOSS for Rust package. Fields: end_column, end_row, start_column, start_row.

Fields

NameTypeAccessDescription
start_rowi32Read/WriteGets the start row.
end_rowi32Read/WriteGets the end row.
start_columni32Read/WriteGets the start column.
end_columni32Read/WriteGets the end column.

Methods

SignatureDescription
create_cell_area(start_row: i32, start_column: i32, end_row: i32, end_column: i32)Result<CellArea, CellsError>Creates a cell area from zero-based row and column bounds.
create_cell_area_a1(start_cell_name: &str, end_cell_name: &str)Result<CellArea, CellsError>Creates a cell area from zero-based row and column bounds.
compare_to(other: &CellArea)i32Compares this area with another area using row-major ordering.
fmt(f: &mut Formatter<'_>)std::fmt::ResultCalls fmt(f) on this CellArea instance.

See Also