The StreamLinesSeedMethod option changes the seed method for streamlines. The OptionValue is 0, 1, 2, or 3. 0 is for Line. 1 is for Ring. 2 is for Square. 3 is for Point Set. If 3 is used, a point set must also be connected to the stream lines.
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(“StreamLinesSeedMethod”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the seed method to square.
CommandApi.Construct("ModifyModule")
CommandApi.Option ("Module", "StreamLines")
CommandApi.Option ("StreamLinesSeedMethod","2")
CommandApi.Do()
Used by: StreamLines
See Also