ContourExplicit Option

 

The ContourExplicit option changes the contour line values that are shown on a contour map. The OptionValue is a list of the contour values to be shown. This option is only available if the ContourSpacing option is set to 3.

 

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

object.Do() or object.DoOnce()

 

Example

This example changes the contours that are shown on a contour map.

 

  CommandApi.Construct ("ModifyModule")

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

  CommandApi.Option ("ContourExplicit", "1.2, 1.7, 2.1, 2.7, 3.4, 3.9, 4.2")

  CommandApi.Do()

 

Used by: Contours

 

 

See Also

Automation Model