BoundingBoxLabelColor Option

 

The BoundingBoxLabelColor option changes the color of the BoundingBox labels. The OptionValue is set to either any color name.

 

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

object.Do() or object.DoOnce()

 

Example

This example shows how to change the bounding box label color to red.

 

  CommandApi.Construct ("ModifyModule")

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

  CommandApi.Option ("BoundingBoxLabelColor", "Red")

  CommandApi.Do()

 

Used by: BoundingBox module

 

 

See Also

Automation Model