MultipleFilterCollection

MultipleFilterCollection class

Represents the multiple filter collection.

class MultipleFilterCollection;

Constructors

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

Methods

MethodDescription
getMatchBlank()Indicates whether to filter by blank.
setMatchBlank(boolean)Indicates whether to filter by blank.
add(string)Adds string filter.
getCount()Gets the number of elements contained in.

constructor()

Constructs one new instance.

constructor();

constructor(IObject)

Constructs from an IObject convertible to this.

constructor(obj: IObject);

Parameters:

ParameterTypeDescription
objIObjectThe object.

getMatchBlank()

Indicates whether to filter by blank.

getMatchBlank() : boolean;

setMatchBlank(boolean)

Indicates whether to filter by blank.

setMatchBlank(value: boolean) : void;

Parameters:

ParameterTypeDescription
valuebooleanThe value to set.

add(string)

Adds string filter.

add(filter: string) : void;

Parameters:

ParameterTypeDescription
filterstringThe filter data.

getCount()

Gets the number of elements contained in.

getCount() : number;