The ContourMinLevel option changes the minimum 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(“ContourMinLevel”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the contour minimum value to 0.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Contours")
CommandApi.Option ("ContourMinLevel", "0")
CommandApi.Do()
Used by: Contours
See Also