The ContourLineWidth option changes the line width of the lines in the contour map. The OptionValue is set to a number between 0 and 4.
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(“ContourLineWidth”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the contour line width.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Contours")
CommandApi.Option ("ContourLineWidth", "1")
CommandApi.Do()
Used by: Contours
See Also