ConditionalFormattingCollection

ConditionalFormattingCollection

Overview

ConditionalFormattingCollection is a struct in Aspose.Cells FOSS for Rust.

Represents a collection of conditional formatting objects.

This struct provides 5 methods for working with ConditionalFormattingCollection objects in Rust programs. Available methods include: add, count, get, remove_area, remove_at. All public members are accessible to any Rust application after installing the Aspose.Cells FOSS for Rust package.

Methods

SignatureDescription
count()usizeGets the number of items.
add()usizeAdds the specified item.
get(index: usize)Option<FormatConditionCollection<'_>>Gets the item from the collection.
remove_at(index: usize)Result<(), CellsError>Removes an item.
remove_area(start_row: i32, start_column: i32, total_rows: i32, total_columns: i32)Result<(), CellsError>Removes an item.

See Also