<vizinfo>.bordercolor

Set the color of the border around the info box

 

<vizinfo>.bordercolor(
    [r,g,b]    
    alpha = 1.0    

)

 

[r,g,b]

The RGB color value of the border


alpha = 1.0

The alpha value of the border. 0 is transparent and 1 is opaque


Remarks

This command will change the color of the border around the info box. The default value is [0,0,0.5,1]

Return Value

None

Example

import vizinfo

info = vizinfo.add('Script info')

#Set border color to red
info.bordercolor(viz.RED)

See also

<vizinfo>.bgcolor