VectorPlotMaxScale Option

 

The VectorPlotMaxScale option changes the largest vector symbol scale size for VectorPlot. The OptionValue is a number between 0 and 5.

 

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

object.Do() or object.DoOnce()

 

Example 1

This example changes the maximum vector scale size to 3.7.

 

  CommandApi.Construct("ModifyModule")

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

  CommandApi.Option ("VectorPlotMaxScale", "3.7")

  CommandApi.Do()

 

Used by: VectorPlot module

 

 

See Also

Automation Model