ContourMaxLevel Option

 

The ContourMaxLevel option changes the maximum contour line value by the contour map. The OptionValue is a number between the component minimum value and the component maximum value. This option is only available if the ContourSpacing is set to 1 or 2.

 

Syntax

object.Construct(“CreateModule”)

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

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

object.Do() or object.DoOnce()

 

object.Construct(“ModifyModule”)

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

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

object.Do() or object.DoOnce()

 

Example

This example changes the contour maximum value to 5.

 

  CommandApi.Construct ("ModifyModule")

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

  CommandApi.Option ("ContourMaxLevel", “5")

  CommandApi.Do()

 

Used by: Contours

 

 

See Also

Automation Model