CustomFilterCollection

CustomFilterCollection class

Represents the custom filters.

class CustomFilterCollection;

Constructors

NameDescription
constructor()Constructs new instance.
constructor(IObject)Constructs from an IObject convertible to this.

Methods

MethodDescription
get(number)Gets the custom filter in the specific index.
getAnd()Indicates whether the two criteria have an “and” relationship.
setAnd(boolean)Indicates whether the two criteria have an “and” relationship.
getCount()Gets the number of elements contained in.

constructor()

Constructs new instance.

constructor();

constructor(IObject)

Constructs from an IObject convertible to this.

constructor(obj: IObject);

Parameters:

ParameterTypeDescription
objIObjectThe object.

get(number)

Gets the custom filter in the specific index.

get(index: number) : CustomFilter;

Parameters:

ParameterTypeDescription
indexnumberThe index.

Returns

CustomFilter

getAnd()

Indicates whether the two criteria have an “and” relationship.

getAnd() : boolean;

setAnd(boolean)

Indicates whether the two criteria have an “and” relationship.

setAnd(value: boolean) : void;

Parameters:

ParameterTypeDescription
valuebooleanThe value to set.

getCount()

Gets the number of elements contained in.

getCount() : number;