StreamLinesStreamMethod Option

 

The StreamLinesStreamMethod option changes the method that is used to show the streamlines. The OptionValue is 0, 1, or 2. Use 0 for Points, 1 for Spheres, or 2 for 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(“StreamLinesStreamMethod”, “OptionValue”)

object.Do() or object.DoOnce()

 

Example

This example changes streamlines method to points.

 

  CommandApi.Construct("ModifyModule")

  CommandApi.Option ("Module", "StreamLines")

  CommandApi.Option ("StreamLinesStreamMethod", "0")

  CommandApi.Do()

 

Used by: StreamLines

 

 

See Also

Automation Model