The ClipPlaneDragger option changes the symbol. The OptionValue is either True or False. True shows the clip plane dragger on the screen. False disables the dragger.
Syntax
object.Construct(“CreateModule”)
object.Option(“SourceModule”, “data file name”)
object.Option(“Type”, “ClipPlane”)
object.Do() or object.DoOnce()
object.Construct(“ModifyModule”)
object.Option(“Module”, “ClipPlane”)
object.Option(“ClipPlaneDragger”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to show the clip plane dragger on the screen.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "ClipPlane")
CommandApi.Option ("ClipPlaneDragger", "True")
CommandApi.Do()
Used by: ClipPlane module
See Also