ContourPlaneShowDragger Option

 

The ContourPlaneShowDragger option shows or hides the cutting plane dragger for the contour map. The OptionValue is set to either True or False. True shows the dragger. False turns the dragger off.

 

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(“ContourPlaneShowDragger”, “OptionValue”)

object.Do() or object.DoOnce()

 

Example

This example shows how to display the dragger for the contour cutting plane.

 

  CommandApi.Construct ("ModifyModule")

  CommandApi.Option ("Module", "Contours")

  CommandApi.Option ("ContourPlaneShowDragger", "True")

  CommandApi.Do()

 

Used by: Contour

 

 

See Also

Automation Model