how to "On" the option "Display Eroded Elements" in Preference menu in Hyperview using tcl command?
Jouher_20819
Altair Community Member
how to "On" the option "Display Eroded Elements" in Preference menu in Hyperview using tcl command?
0
Answers
-
Hi,
you migh be looking after this option, under the RenderOptions handle.
poIRenderOptions SetErosionDrawEnabled
Sets the erosion draw enabled status.
Syntax
poIRenderOptions_handle SetErosionDrawEnabled value
Application
HyperView Tcl Modify
Description
This command sets the erosion draw enabled status.
Inputs
- value
- True/false.
Example
To set the erosion draw enabled value to false:hwi GetSessionHandle mySessionName mySessionName GetProjectHandle myProjectName set pageIndex [myProjectName GetActivePage] myProjectName GetPageHandle myPageName $pageIndex set windowIndex [myPageName GetActiveWindow] myPageName GetWindowHandle myWindowName $windowIndex myWindowName GetClientHandle myPostName myPostName GetRenderOptionsHandle myROptionsName myROptionsName SetErosionDrawEnabled false
0