PivotFilterCollection Class
Represents a collection of PivotFilters.
public sealed class PivotFilterCollection : IEnumerable<PivotFilter>, IEnumerable
Public NotInheritable Class PivotFilterCollection
Implements IEnumerable(Of PivotFilter), IEnumerable
- Inheritance:
- System.ObjectPivotFilterCollection
Properties
Count
Gets the total number of PivotFilters in the PivotFilterCollection.
Property Value
- System.Int32
The total number of PivotFilters in the PivotFilterCollection.
Item[PivotField]
Gets the PivotFilter for the specified pivot field.
public PivotFilter this[PivotField field] { get; }
Public ReadOnly Property Item(field As PivotField) As PivotFilter
Parameters
field
- PivotField
The pivot field of the PivotFilter to get.
Property Value
The PivotFilter for the specified pivot field.
Methods
GetEnumerator()
Returns an enumerator that iterates through the PivotFilters.
public IEnumerator<PivotFilter> GetEnumerator()
Public Function GetEnumerator As IEnumerator(Of PivotFilter)
Returns
- System.Collections.Generic.IEnumerator<PivotFilter>
An enumerator that can be used to iterate through the PivotFilters.
Implements
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable