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
| Name | Type | Access | Description |
|---|---|---|---|
start_row | i32 | Read/Write | Gets the start row. |
end_row | i32 | Read/Write | Gets the end row. |
start_column | i32 | Read/Write | Gets the start column. |
end_column | i32 | Read/Write | Gets the end column. |
Methods
| Signature | Description |
|---|---|
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) → i32 | Compares this area with another area using row-major ordering. |
fmt(f: &mut Formatter<'_>) → std::fmt::Result | Calls fmt(f) on this CellArea instance. |