how to "On" the option "Display Eroded Elements" in Preference menu in Hyperview using tcl command?

User: "Jouher_20819"
Altair Community Member
Updated by Jouher_20819

how to "On" the option "Display Eroded Elements" in Preference menu in Hyperview using tcl command?

Find more posts tagged with

Sort by:
1 - 1 of 11
    User: "Adriano_Koga"
    Altair Employee
    Updated by Adriano_Koga

    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

     

    image