BoundingBoxShowLabels Option

 

The BoundingBoxShowLabels option turns the display of labels on the BoundingBox corners on or off. The OptionValue is set to True or False. True displays the labels. False turns the labels off.

 

Syntax

object.Construct(“CreateModule”)

object.Option(“SourceModule”, “data file name”)

object.Option(“Type”, “BoundingBox”)

object.Do() or object.DoOnce()

 

object.Construct(“ModifyModule”)

object.Option(“Module”, “BoundingBox”)

object.Option(“BoundingBoxShowLabels”, “OptionValue”)

object.Do() or object.DoOnce()

 

Example

This example shows how to show labels on the bounding box.

 

  CommandApi.Construct ("ModifyModule")

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

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

  CommandApi.Do()

 

Used by: BoundingBox module

 

 

See Also

Automation Model