BoundingBoxLabelFormatType Option

 

The BoundingBoxLabelFormatType option sets label format of an BoundingBox module. The OptionValue is 0, 1, or 2 for Fixed, Exponential, or General.

 

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

object.Do() or object.DoOnce()

 

Example

This example changes the label format to Fixed for the bounding box.

 

  CommandApi.Construct ("ModifyModule")

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

  CommandApi.Option ("BoundingBoxLabelFormatType", "0")

  CommandApi.Do()

 

Used by: BoundingBox module

 

 

See Also

Automation Model