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

SignatureDescription
name()StringGets the associated value.
get_name()StringGets the associated value.
row()u32Gets the associated value.
get_row()u32Gets the associated value.
column()u32Gets the associated value.
get_column()u32Gets the associated value.
value()Option<&CellValue>Gets the logical cell value.
get_value()Option<&CellValue>Gets the logical cell value.
value_type()CellValueTypeGets the current logical cell value type.
get_type()CellValueTypeGets 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()StringGets the associated value.
get_raw_string_value()StringGets the associated value.
display_string_value()StringGets the display text generated from the cell value, style, and workbook culture.
get_display_string_value()StringGets the display text generated from the cell value, style, and workbook culture.
formatted_string_value()StringGets the associated value.
get_formatted_string_value()StringGets the associated value.
style()StyleGets the associated value.
get_style()StyleGets the associated value.
get_style_with_borders(_check_borders: bool)StyleGets 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.

See Also