The ContourBorderWidth option changes the width of the contour border line. The OptionValue is 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(“ContourBorderWidth”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the border thickness around the edge of the contour map.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Contours")
CommandApi.Option ("ContourBorderWidth", "2.3")
CommandApi.Do()
Used by: Contour
See Also