[]
Represents a collection of all the pivot filters in the pivot field.
public interface IPivotFilters : IEnumerable<IPivotFilter>, IEnumerable
Gets the number of pivot filters in the collection.
int Count { get; }
Gets the pivot filter at the specified index.
IPivotFilter this[int index] { get; }
index
intThe zero-based index of the pivot filter to get.
The pivot filter at the specified index.
Adds a new filter to the PivotFilters collection.
IPivotFilter Add(PivotFilterType type, object value1 = null, object value2 = null, PivotFilterOptions options = null)
type
PivotFilterTypeThe type of filter.
value1
objectThe first value for the filter (optional).
value2
objectThe second value for the filter (optional).
options
PivotFilterOptionsAdditional settings for the filter (optional).
The added pivot filter.