BoundingBoxFont Option

 

The BoundingBoxFont option changes the label font for the BoundingBox. The OptionValue is set to any font 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(“BoundingBoxFont”, “OptionValue”)

object.Do() or object.DoOnce()

 

Example

This example shows how to change the bounding box label font to Times New Roman.

 

  CommandApi.Construct ("ModifyModule")

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

  CommandApi.Option ("BoundingBoxFont", "Times New Roman")

  CommandApi.Do()

 

Used by: BoundingBox module

 

 

See Also

Automation Model