VectorPlotFrequency Option

 

The VectorPlotFrequency option changes the frequency of points being displayed for the VectorPlot. The OptionValue is an integer value between 1 and the number of nodes in the lattice in that direction.

 

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

object.Do() or object.DoOnce()

 

Example

This example changes the frequency to 7.

 

  CommandApi.Construct("ModifyModule")

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

  CommandApi.Option ("VectorPlotFrequency ", "7")

  CommandApi.Do()

 

Used by: VectorPlot module

 

 

See Also

Automation Model