ContourLevelInterval Option

 

The ContourLevelInterval option changes the interval for contour maps. The OptionValue is a number. This option is only available if the ContourSpacing is set to 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(“ContourLevelInterval”, “OptionValue”)

object.Do() or object.DoOnce()

 

Example

This example changes the contour interval to 1.

 

  CommandApi.Construct ("ModifyModule")

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

  CommandApi.Option ("ContourLevelInterval", "1")

  CommandApi.Do()

 

Used by: Contours

 

 

See Also

Automation Model