The StreamLinesYScale option changes the Y scale factor for streamlines. The OptionValue is a number.
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(“StreamLinesYScale”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the X scale factor for stream lines.
CommandApi.Construct("ModifyModule")
CommandApi.Option ("Module", "StreamLines")
CommandApi.Option ("StreamLinesYScale", "2")
CommandApi.Do()
Used by: StreamLines
See Also