MultipleFilterCollection
Contents
[
Hide
]MultipleFilterCollection class
Represents the multiple filter collection.
class MultipleFilterCollection;
Constructors
| Name | Description |
|---|---|
| constructor() | Constructs one new instance. |
| constructor(VObject) | Constructs from a VObject convertible to this. |
Properties
| Property | Type | Description |
|---|---|---|
| matchBlank | boolean | Indicates whether to filter by blank. |
Methods
| Method | Description |
|---|---|
| get(number) | DateTimeGroupItem or a simple object. |
| add(string) | Adds string filter. |
| toVObject() | Gets the VObject. |
constructor()
Constructs one new instance.
constructor();
constructor(VObject)
Constructs from a VObject convertible to this.
constructor(vobj: VObject);
Parameters:
| Parameter | Type | Description |
|---|---|---|
| vobj | VObject | The vobject. |
matchBlank
Indicates whether to filter by blank.
matchBlank : boolean;
get(number)
DateTimeGroupItem or a simple object.
get(index: number) : VObject;
Parameters:
| Parameter | Type | Description |
|---|---|---|
| index | number |
add(string)
Adds string filter.
add(filter: string) : void;
Parameters:
| Parameter | Type | Description |
|---|---|---|
| filter | string | The filter data. |
toVObject()
Gets the VObject.
toVObject() : VObject;