The StreamLinesShowDragger turns on or off the display of the dragger for seed points for streamlines. The OptionValue is True or False. True turns on the dragger display. False turns off the dragger display.
Syntax
object.Construct(“CreateModule”)
object.Option(“SourceModule”, “data file name”)
object.Option(“Type”, “StreamLines”)
object.Do() or object.DoOnce()
object.Construct(“ModifyModule”)
object.Option(“Module”, “StreamLines”)
object.Option(“StreamLinesShowDragger”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example turns on the display of the dragger for stream lines.
CommandApi.Construct("ModifyModule")
CommandApi.Option ("Module", "StreamLines")
CommandApi.Option ("StreamLinesShowDragger", "True")
CommandApi.Do()
Used by: StreamLines
See Also