VectorPlotColor Option

 

The VectorPlotColor option changes the fixed color for VectorPlot. The OptionValue is a color name. This option is available when VectorPlotColorMethod is set to 0.

 

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

object.Do() or object.DoOnce()

 

Example

This example changes the fixed color to desert blue.

 

  CommandApi.Construct("ModifyModule")

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

  CommandApi.Option ("VectorPlotColor", "Desert Blue")

  CommandApi.Do()

Used by: VectorPlot module

 

 

See Also

Automation Model