FilterColumnCollection

FilterColumnCollection

Overview

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

Represents a collection of filter column objects.

This struct provides 7 methods for working with FilterColumnCollection objects in Rust programs. Available methods include: add, clear, count, get, get_count, item, 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.
get_count()usizeGets the number of items.
add(column_index: i32)Result<usize, CellsError>Adds the specified item.
get(index: usize)Option<FilterColumn<'_>>Gets the item from the collection.
item(index: usize)Option<FilterColumn<'_>>Gets the item from the collection.
remove_at(index: usize)Result<(), CellsError>Removes an item.
clear()Clears the current state.

See Also