poIResultCtrl GetLayerFilterList

Gets the handle for a layer filter.

Syntax

poIResultCtrl_handle GetLayerFilterList "list"

Application

HyperView Tcl Query

Description

This command retrieves a list of all layer filter IDs associated with the result control.

Example

To get the layer filter IDs list:
hwi OpenStack
hwi GetSessionHandle session_handle
session_handle GetProjectHandle project_handle
project_handle GetPageHandle page_handle [project_handle GetActivePage]
page_handle GetWindowHandle window_handle [page_handle GetActiveWindow]
window_handle GetClientHandle client_handle
client_handle GetModelHandle model_handle [client_handle GetActiveModel]
model_handle GetResultCtrlHandle result_handle
variable filter_ids
result_handle GetLayerFilterList filter_ids
foreach filter $filter_ids {
result_handle GetLayerFilterHandle filter_handle $filter
filter_handle GetLabel filter_label
}
hwi CloseStack

Errors

Returns an error if the result controller handle is invalid.