PivotFilterCollection
Contents
[
Hide
]PivotFilterCollection class
Represents a collection of all the PivotFilter objects
class PivotFilterCollection;
Methods
Method | Description |
---|---|
get(number) | Gets the pivotfilter object at the specific index. |
add(number, PivotFilterType) | Adds a PivotFilter Object to the specific type |
clearFilter(number) | Clear PivotFilter from the specific PivotField |
getCount() | Gets the number of elements contained in. |
isNull() | Checks whether the implementation object is null. |
get(number)
Gets the pivotfilter object at the specific index.
get(index: number) : PivotFilter;
Parameters:
Parameter | Type | Description |
---|---|---|
index | number |
Returns
add(number, PivotFilterType)
Adds a PivotFilter Object to the specific type
add(fieldIndex: number, type: PivotFilterType) : number;
Parameters:
Parameter | Type | Description |
---|---|---|
fieldIndex | number | the PivotField index |
type | PivotFilterType | the PivotFilter type |
Returns
the index of the PivotFilter Object in this PivotFilterCollection.
clearFilter(number)
Clear PivotFilter from the specific PivotField
clearFilter(fieldIndex: number) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
fieldIndex | number | the PivotField index |
getCount()
Gets the number of elements contained in.
getCount() : number;
isNull()
Checks whether the implementation object is null.
isNull() : boolean;