VectorPlotOrientation Option

 

The VectorPlotOrientation option changes the orientation that is used to show the VectorPlot. The OptionValue is 0, 1, 2, or 3. Use 0 for XY Plane, 1 for XZ Plane, 2 for YZ Plane, or 3 for or All.

 

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

object.Do() or object.DoOnce()

 

Example

This example changes VectorPlot orientation to YZ Plane.

 

  CommandApi.Construct("ModifyModule")

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

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

  CommandApi.Do()

 

Used by: VectorPlot module

 

 

See Also

Automation Model