ListObjectSupport
Overview
ListObjectSupport is a struct in Aspose.Cells FOSS for Rust.
Inherits from: Default, Clone, PartialEq.
This struct provides 12 methods for working with ListObjectSupport objects in Rust programs.
Available methods include: create_model, ranges_overlap, rebuild_columns, resolve_column_name, sanitize_display_name, table_style_type_from_name, table_style_type_to_name, try_parse_table_style_type, validate_display_name, validate_no_overlap, validate_range, validate_unique_display_name.
All public members are accessible to any Rust application after installing the Aspose.Cells FOSS for Rust package.
Methods
| Signature | Description |
|---|---|
validate_range(start_row: i32, start_column: i32, end_row: i32, end_column: i32) | Calls validate_range(start_row, start_column, end_row, end_column) on this ListObjectSupport instance. |
validate_display_name(display_name: String) | Calls validate_display_name(display_name) on this ListObjectSupport instance. |
validate_unique_display_name(existing: IReadOnlyList<ListObjectModel>, display_name: String, skip_index: i32) | Calls validate_unique_display_name(existing, display_name, skip_index) on this ListObjectSupport instance. |
validate_no_overlap(existing: IReadOnlyList<ListObjectModel>, start_row: i32, start_column: i32, end_row: i32, end_column: i32, skip_index: i32) | Calls validate_no_overlap(existing, start_row, start_column, end_row, end_column, skip_index) on this ListObjectSupport instance. |
ranges_overlap(r1s: i32, c1s: i32, r1e: i32, c1e: i32, r2s: i32, c2s: i32, r2e: i32, c2e: i32) → bool | Calls ranges_overlap(r1s, c1s, r1e, c1e, r2s, c2s, r2e, c2e) on this ListObjectSupport instance. |
create_model(worksheet_model: WorksheetModel, start_row: i32, start_column: i32, end_row: i32, end_column: i32, has_headers: bool, table_number: i32) → ListObjectModel | Calls create_model(worksheet_model, start_row, start_column, end_row, end_column, has_headers, table_number) on this ListObjectSupport instance. |
rebuild_columns(model: ListObjectModel, worksheet_model: WorksheetModel) | Calls rebuild_columns(model, worksheet_model) on this ListObjectSupport instance. |
resolve_column_name(worksheet_model: WorksheetModel, header_row: i32, column_index: i32, has_headers: bool, default_column_number: i32) → String | Calls resolve_column_name(worksheet_model, header_row, column_index, has_headers, default_column_number) on this ListObjectSupport instance. |
table_style_type_to_name(r#type: TableStyleType) → String | Calls table_style_type_to_name(r#type) on this ListObjectSupport instance. |
table_style_type_from_name(name: String) → TableStyleType | Calls table_style_type_from_name(name) on this ListObjectSupport instance. |
try_parse_table_style_type(name: String, result: Ref<TableStyleType>) → bool | Calls try_parse_table_style_type(name, result) on this ListObjectSupport instance. |
sanitize_display_name(display_name: String) → String | Calls sanitize_display_name(display_name) on this ListObjectSupport instance. |