BoundingBoxLineWidth Option

 

The BoundingBoxLineWidth option changes the BoundingBox line width. The OptionValue is a number from 0 to 4.

 

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

object.Do() or object.DoOnce()

 

Example

This example shows how to change the bounding box line width to 2.

 

  CommandApi.Construct ("ModifyModule")

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

  CommandApi.Option ("BoundingBoxLineWidth", "2")

  CommandApi.Do()

 

Used by: BoundingBox module

 

 

See Also

Automation Model