poILayerFilter IsFiltered

Verifies if the given layer is present in the layer filter.

Syntax

poILayerFilter_handle IsFiltered layer_name

Application

HyperView Tcl Query

Description

This command verifies if the given layer is in the layer filter.

Inputs

layer_name
The name of the layer.

Example

To create the layer filter, get the handle for the filter, and then verify that a layer ("Ply 2") is present in the layer filter:
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
result_handle CreateLayerFilter 1 "Composite Stress" 2
result_handle GetLayerFilterHandle filter_handle 1
filter_handle AddLayer "Ply 1"
filter_handle AddLayer "Ply 2"
set isPresent [filter_handle IsFiltered "Ply 2"]
hwi CloseStack

Errors

Returns an error if the layer filter controller handle is invalid.