Cell
Overview
Cell is a struct in Aspose.Cells FOSS for Rust.
Represents a single worksheet cell and exposes value, formula, and style operations.
This struct provides 35 methods for working with Cell objects in Rust programs.
Available methods include: bool_value, border, column, date_time_value, display_string_value, double_value, formatted_string_value, formula_cached_value, get_bool_value, get_border, get_column, get_date_time_value, and 23 additional methods.
All public members are accessible to any Rust application after installing the Aspose.Cells FOSS for Rust package.
Methods
| Signature | Description |
|---|---|
name() → String | Gets the associated value. |
get_name() → String | Gets the associated value. |
row() → u32 | Gets the associated value. |
get_row() → u32 | Gets the associated value. |
column() → u32 | Gets the associated value. |
get_column() → u32 | Gets the associated value. |
value() → Option<&CellValue> | Gets the logical cell value. |
get_value() → Option<&CellValue> | Gets the logical cell value. |
value_type() → CellValueType | Gets the current logical cell value type. |
get_type() → CellValueType | Gets the current logical cell value type. |
int_value() → Option<i32> | Gets the associated value. |
get_int_value() → Option<i32> | Gets the associated value. |
long_value() → Option<i64> | Gets the associated value. |
get_long_value() → Option<i64> | Gets the associated value. |
double_value() → Option<f64> | Gets the associated value. |
get_double_value() → Option<f64> | Gets the associated value. |
bool_value() → Option<bool> | Gets the associated value. |
get_bool_value() → Option<bool> | Gets the associated value. |
date_time_value() → Option<DateTime<Utc>> | Gets the associated value. |
get_date_time_value() → Option<DateTime<Utc>> | Gets the associated value. |
string_value() → Option<&str> | Gets a stable string representation of the cell value without applying style-based display formatting. |
get_string_value() → Option<&str> | Gets a stable string representation of the cell value without applying style-based display formatting. |
raw_string_value() → String | Gets the associated value. |
get_raw_string_value() → String | Gets the associated value. |
display_string_value() → String | Gets the display text generated from the cell value, style, and workbook culture. |
get_display_string_value() → String | Gets the display text generated from the cell value, style, and workbook culture. |
formatted_string_value() → String | Gets the associated value. |
get_formatted_string_value() → String | Gets the associated value. |
style() → Style | Gets the associated value. |
get_style() → Style | Gets the associated value. |
get_style_with_borders(_check_borders: bool) → Style | Gets the associated value. |
border() → Option<&Border> | Gets the associated value. |
get_border() → Option<&Border> | Gets the associated value. |
formula_cached_value() → Option<&CellValue> | Gets the associated value. |
get_formula_cached_value() → Option<&CellValue> | Gets the associated value. |