The LightDragger option turns the display of the light dragger on or off. The OptionValue is set to True or False. True displays the dragger. False turns the dragger off.
Syntax
object.Construct(“CreateModule”)
object.Option(“Type”, “Light”)
object.Do() or object.DoOnce()
object.Construct(“ModifyModule”)
object.Option(“Module”, “Light”)
object.Option(“LightDragger”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to show the light dragger.
CommandApi.Construct ("ModifyModule")
CommandApi.Option("Module", "Light")
CommandApi.Option ("LightDragger", "True")
CommandApi.Do()
Used by: Light
See Also