FilterColumnCollection Class
Represents a collection of filter columns.
public sealed class FilterColumnCollection : IEnumerable<FilterColumn>, IEnumerable
Public NotInheritable Class FilterColumnCollection
Implements IEnumerable(Of FilterColumn), IEnumerable
- Inheritance:
- System.ObjectFilterColumnCollection
Properties
Count
Gets the total number of filter columns in the FilterColumnCollection.
Property Value
- System.Int32
The total number of filter columns in the FilterColumnCollection.
Item[Int32]
Gets the FilterColumn at the specified index.
public FilterColumn this[int index] { get; }
Public ReadOnly Property Item(index As Integer) As FilterColumn
Parameters
index
- System.Int32
The zero-based index of the FilterColumn to get.
Property Value
The FilterColumn at the specified index.
Exceptions
- System.ArgumentOutOfRangeException
index
is less than zero or is equal to or greater than Count.
Methods
GetEnumerator()
Returns an enumerator that iterates through the sort levels.
public IEnumerator<FilterColumn> GetEnumerator()
Public Function GetEnumerator As IEnumerator(Of FilterColumn)
Returns
- System.Collections.Generic.IEnumerator<FilterColumn>
An enumerator that can be used to iterate through the sort levels.
Implements
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable