The ContourPlaneOrientation option changes the orientation of the cutting plane for a contour plot. The OptionValue is 0, 1, 2, or 3 for XY Plane (Axial), XZ Plane (Coronal), YZ Plane (Sagittal), or Custom.
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(“ContourPlaneOrientation”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example shows how to change the contour cutting plane orientation.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "Contours")
CommandApi.Option ("ContourPlaneOrientation", "2")
CommandApi.Do()
Used by: Contour
See Also