ContourSpacing Option

 

The ContourSpacing option changes the contour Level Method option. The OptionValue is either 0, 1, 2, or 3.  0 sets the method to Automatic, 1 sets the method to Min, Max, Count, 2 sets the method to Min, Max, Interval, and 3 sets the method to Explicit.

 

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(“ContourSpacing”, “True”)

object.Do() or object.DoOnce()

 

Example

This example changes the contour Level Method to 1, Min, Max, Count.

 

  CommandApi.Construct ("ModifyModule")

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

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

  CommandApi.Do()

 

Used by: Contours

 

 

See Also

Automation Model