QueryFilters.SelectedFilters property
- Last UpdatedJul 19, 2024
- 1 minute read
The QueryFilters.SelectedFilters property is a read-only String property used to get the filter selecting status.
For example, an alarm client control with the following filters selected, the QueryFilters.SelectedFilters property will return value of “F1, F3”.

In the property, each filter will be separated using a comma ‘,’.
Example
Dim SF as string;
SF = AlarmClient1.QueryFilters.SelectedFilters;