SelectFilters() method
- Last UpdatedJul 19, 2024
- 1 minute read
The SelectFilters() script function will apply filters to the alarm records basing on the list of filter names in the parameter FilterNames, where each filter name is separate by comma. If FilterNames is empty, no filter will be applied to the alarm records. Invalid filter name will be ignored.
Syntax
AlarmClient.SelectFilters(FilterNames);
Parameters
FilterNames
The name of the filters which are stored in the filter list. It can be a string constant or a string type reference.
Example
AlarmClient1.SelectFilters("F1, F3, F5");
AlarmClient1.SelectFilters(" ");