BoundingBoxLabelFormatPrefix Option

 

The BoundingBoxLabelFormatPrefix option sets the prefix for the label for the BoundingBox module. The OptionValue is the desired prefix label.

 

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

object.Do() or object.DoOnce()

 

Example

This example changes the label prefix for the bounding box.

 

  CommandApi.Construct ("ModifyModule")

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

  CommandApi.Option ("BoundingBoxLabelFormatPrefix", "pre-")

  CommandApi.Do()

 

Used by: BoundingBox module

 

 

See Also

Automation Model