MultipleFilterCollection

MultipleFilterCollection class

Represents the multiple filter collection.

class MultipleFilterCollection;

Constructors

NameDescription
constructor()Constructs one new instance.
constructor(VObject)Constructs from a VObject convertible to this.

Properties

PropertyTypeDescription
matchBlankbooleanIndicates whether to filter by blank.

Methods

MethodDescription
get(number)Gets DateTimeGroupItem or a string value.
add(string)Adds a label filter.
add(DateTimeGroupingType, number, number, number)Adds a date filter criteria value.
toVObject()Gets the VObject.

constructor()

Constructs one new instance.

constructor();

constructor(VObject)

Constructs from a VObject convertible to this.

constructor(vobj: VObject);

Parameters:

ParameterTypeDescription
vobjVObjectThe vobject.

matchBlank

Indicates whether to filter by blank.

matchBlank : boolean;

get(number)

Gets DateTimeGroupItem or a string value.

get(index: number) : VObject;

Parameters:

ParameterTypeDescription
indexnumber

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.

toVObject()

Gets the VObject.

toVObject() : VObject;