BackColor Property



 
The BackColor property contains the background color used for the icon.


Syntax

    document.all['icon_id'].BackColor [=color]
    
Possible Values
    ColorValue that specifies or retrieves the background color.

    The property is read/write.
Remarks
    ColorValue: An RGB (Red, Green, Blue) 32-bit color value that defines a solid color. Each of the Red, Green, Blue portions represents the color intensity between 0 and 255 (or 0x00 to 0xff hexadecimal). The RGB color value can be calculated: ColorValue = Red + Green*256 + Blue*65536. Please note that this representation differs from HTML color values, which are hexadecimal RRGGBB.
Examples
    The following example shows how to use this control in the InsertWindow function of the default skin file's tray window.

    <OBJECT id='windowicon" + ak_WindowInfo.Handle + "' width='16px'
    height='16px' CLASSID='CLSID:4688E264-206D-4D3A-B244-784ECFFD4746'>
      <PARAM NAME="BackColor" VALUE="16777215">
    </OBJECT>
    

Applies to
    SiteKiosk v5.0 (and later versions).

Back to top