The ContourBorderShow option turns on or off the display of the border at the edge of the contour map. The OptionValue is either True or False. True turns on the display of the border. False turns off the display of the border.
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(“ContourBorderShow”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example turns off the display of the border around the edge of the contour map.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Contours")
CommandApi.Option ("ContourBorderShow", "False")
CommandApi.Do()
Used by: Contours
See Also