The ContourPlaneOffset option changes the offset of the cutting plane from the center of the lattice. The OptionValue is set to any number.
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(“ContourPlaneOffset”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to alter the offset of the contour plane cutting value.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Contours")
CommandApi.Option ("ContourPlaneOffset", "-7.5")
CommandApi.Do()
Used by: Contour
See Also