The BoundingBoxLabelFormatNumDigits option sets number of digits in the label format for the BoundingBox module. The OptionValue is an integer between 0 and 15.
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(“BoundingBoxLabelFormatNumDigits”, “OptionValue”)
object.Do() or object.DoOnce()
Example
This example changes the label format number of digits for the bounding box.
CommandApi.Construct ("ModifyModule")
CommandApi.Option ("Module", "BoundingBox")
CommandApi.Option ("BoundingBoxLabelFormatNumDigits", "2")
CommandApi.Do()
Used by: BoundingBox module
See Also