PivotAreaFilterCollection

PivotAreaFilterCollection class

Represents the list of filters for PivotArea

class PivotAreaFilterCollection implements Iterable<PivotAreaFilter>;

Constructors

ConstructorDescription
constructor()Default Constructor.

Methods

MethodDescription
get(number)Gets filter from the list by the index.
getCount()@deprecated. Please use the ‘count’ property instead. Gets the number of elements contained in.
isNull()Checks whether the implementation object is null.

[Symbol.iterator](): Iterator<PivotAreaFilter>

Returns an iterator over the items in the collection. Enables use of for...of, spread syntax, and Array.from().

constructor()

Default Constructor.

constructor();

get(number)

Gets filter from the list by the index.

get(index: number) : PivotAreaFilter;

Parameters:

ParameterTypeDescription
indexnumberThe Index

Returns

PivotAreaFilter

getCount()

@deprecated. Please use the ‘count’ property instead. Gets the number of elements contained in.

getCount() : number;

isNull()

Checks whether the implementation object is null.

isNull() : boolean;