VectorPlotReverse Option

 

The VectorPlotReverse option changes the orientation for VectorPlot symbols. The OptionValue is either True or False. True reverses the symbols. False leaves the symbols as is.

 

Syntax

object.Construct(“CreateModule”)

object.Option(“SourceModule”, “data file name”)

object.Option(“Type”, “VectorPlot”)

object.Do() or object.DoOnce()

 

object.Construct(“ModifyModule”)

object.Option(“Module”, “VectorPlot”)

object.Option(“VectorPlotReverse”, “OptionValue”)

object.Do() or object.DoOnce()

 

Example 1

This example changes the orientation of the vector plots.

 

  CommandApi.Construct("ModifyModule")

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

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

  CommandApi.Do()

 

Used by: VectorPlot module

 

 

See Also

Automation Model