BoundingBoxColor Option

 

The BoundingBoxColor option changes the color of the BoundingBox. The OptionValue is a 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(“BoundingBoxColor”, “OptionValue”)

object.Do() or object.DoOnce()

 

Example

This example shows how to change the bounding box color to blue.

 

  CommandApi.Construct ("ModifyModule")

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

  CommandApi.Option ("BoundingBoxColor", "Blue")

  CommandApi.Do()

 

Used by: BoundingBox module

 

 

See Also

Automation Model