The ContourBorderColor option changes the color of the contour border line. The OptionValue is a color name.
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 color around the edge of the contour map.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Contours")
CommandApi.Option ("ContourBorderColor", "Ruby Red")
CommandApi.Do()
Used by: Contours
See Also