StreamLinesAutoStep Option

 

The StreamLinesAutoStep option turns on or off the automatic calculation of of step interval for stream lines. The OptionValue is set to True or False. True turns on the auto calculation. False turns off the auto calculation.

 

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

object.Do() or object.DoOnce()

 

Example

This example turns on the AutoCalc Step Interval feature.

 

  CommandApi.Construct("ModifyModule")

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

  CommandApi.Option ("StreamLinesAutoStep", "True")

  CommandApi.Do()

 

Used by: StreamLines

 

 

See Also

Automation Model