The StreamLinesResetDragger resets the seed point locations for streamlines. The OptionValue is True or False. True resets the locations. False does not reset the positions.
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(“StreamLinesResetDragger”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example resets the point locations for stream lines.
CommandApi.Construct("ModifyModule")
CommandApi.Option ("Module", "StreamLines")
CommandApi.Option ("StreamLinesResetDragger", "True")
CommandApi.Do()
Used by: StreamLines
See Also