Arbortext IsoDraw > Macro Language Reference > Object Data Types > Sub Data Types for Attribute Preferences > .halos[ ]
  
.halos[ ]
This property gives access to all halo attributes but it can not be used directly.
.halos[ ].name
Returns and sets the name of the halo as string.
app.halos[1].name = "myPrettyhalo"
.halos[ ].width
Returns and sets the width of the halo in mm as float. Setting this value to 0 means automatic; all positive values defining the thickness of the halo in mm; all negative values defining the thickness of the halo relative to the thickness of the line thickness.
app.halos[1].width = 7
.halos[ ].color
Returns and sets the color of the halo as ColorSpec.
app.halos[1].color.rgb.red = 155
app.halos[1].color.rgb.green = 155
app.halos[1].color.rgb.blue = 155
.halos[ ].start
Returns and sets the start type of the halo as integer. Allowed values are 1 for “long”, 2 for “middle”, 3 for “short”.
app.halos[1].start = 1
.halos[ ].end
Returns and sets the end type of the halo as integer. Allowed values are 1 for “long”, 2 for “middle”, 3 for “short”.
app.halos[1].end = 2