poIContourCtrl SetValueFilter

Sets contour value filter value.

Syntax

contour_handle SetValueFilter filter

Application

HyperView Tcl Modify

Description

This command sets the value filter for the contour.

Inputs

filter
The filter string to be applied. Examples of the valid filter strings are: “>= 10.123”, “<= 10.123”, and “Range 10.123 100.456”.

Example

To set the value filter string for a contour:
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 GetContourCtrlHandle contour_handle

# Set the value filter 
contour_handle SetValueFilter ">= 100.666"
hwi CloseStack

Error

Returns an empty string if the filter string is not in the standard format. The valid formats are: “>= 10.123”, “<= 10.123”, and “Range 10.123 100.456”.