The LatticeSlicePlaneShowDragger option turns on or off the display of the dragger for the cutting plane for a Slice module. The OptionValue is set to True or False. True displays the dragger. False does not.
Syntax
object.Construct(“ModifyModule”)
object.Option(“Module”, “Slice”)
object.Option(“LatticeSlicePlaneShowDragger”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example turns on the display of the dragger for the cutting plane for the Slice module.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Slice")
CommandApi.Option ("LatticeSlicePlaneShowDragger", "True")
CommandApi.Do()
Used by: LatticeSlice
See Also