MultipleFilterCollection

MultipleFilterCollection class

Represents the multiple filter collection.

class MultipleFilterCollection;

Constructors

ConstructorDescription
constructor()Constructs one new instance.
constructor(Object)Constructs from an Object convertible to this.

Properties

PropertyTypeDescription
matchBlankbooleanIndicates whether to filter by blank.

Methods

MethodDescription
get(number)Gets DateTimeGroupItem or a string value.
getMatchBlank()@deprecated. Please use the ‘matchBlank’ property instead. Indicates whether to filter by blank.
setMatchBlank(boolean)@deprecated. Please use the ‘matchBlank’ property instead. Indicates whether to filter by blank.
add(string)Adds a label filter.
add(DateTimeGroupingType, number, number, number)Adds a date filter criteria value.
getCount()@deprecated. Please use the ‘count’ property instead. Gets the number of elements contained in.
isNull()Checks whether the implementation object is null.
toObject()Gets the Object.

constructor()

Constructs one new instance.

constructor();

constructor(Object)

Constructs from an Object convertible to this.

constructor(obj: Object);

Parameters:

ParameterTypeDescription
objObjectThe object.

matchBlank

Indicates whether to filter by blank.

matchBlank : boolean;

get(number)

Gets DateTimeGroupItem or a string value.

get(index: number) : Object;

Parameters:

ParameterTypeDescription
indexnumber

getMatchBlank()

@deprecated. Please use the ‘matchBlank’ property instead. Indicates whether to filter by blank.

getMatchBlank() : boolean;

setMatchBlank(boolean)

@deprecated. Please use the ‘matchBlank’ property instead. Indicates whether to filter by blank.

setMatchBlank(value: boolean) : void;

Parameters:

ParameterTypeDescription
valuebooleanThe value to set.

add(string)

Adds a label filter.

add(filter: string) : void;

Parameters:

ParameterTypeDescription
filterstringThe filter data.

add(DateTimeGroupingType, number, number, number)

Adds a date filter criteria value.

add(type: DateTimeGroupingType, year: number, month: number, day: number) : void;

Parameters:

ParameterTypeDescription
typeDateTimeGroupingTypeThe type of date filter.
yearnumberThe year.
monthnumberThe month.
daynumberThe day.

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;

toObject()

Gets the Object.

toObject() : Object;