poI3DViewCtrl GetWithMasking

Gets the "With Masking" state of a stored view.

Syntax

poI3DViewCtrl_handle GetWithMasking name

Application

HyperView Tcl Query

Description

Returns the state of the "With Masking" flag for the view with the given name. If True, the masking state will be saved within the view. If False, the masking state will not be saved within the view.

Inputs

name
The name of the saved view.

Example

To get the "With Masking" state of a view name "View 1":
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 GetViewControlHandle view_handle
view_handle GetWithMasking "View 1"
hwi CloseStack

Errors

Returns False if the view handle is invalid or if the named view does not exist.