The BoundingBoxLabelFormatPostfix option sets the postfix for the label for the BoundingBox module. The OptionValue is the desired postfix 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(“BoundingBoxLabelFormatPostfix”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the label postfix for the bounding box.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "BoundingBox")
CommandApi.Option ("BoundingBoxLabelFormatPostfix", "-post")
CommandApi.Do()
Used by: BoundingBox module
See Also