StreamLinesPointSize Option

 

The StreamLinesPointSize option changes the point size of points displayed in StreamLines. The OptionValue is a number between 0 and 48. The larger the number, the larger the point. This option is used with StreamLinesStreamMethod set to 0.

 

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(“StreamLinesPointSize”, “OptionValue”)

object.Do() or object.DoOnce()

 

Example

This example changes the StreamLines point size.

 

  CommandApi.Construct("ModifyModule")

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

  CommandApi.Option ("StreamLinesPointSize", "2")

  CommandApi.Do()

 

Used by: StreamLines

 

 

See Also

Automation Model