Icon Property



 
The Icon property contains the handle of the icon.


Syntax

    [hicon=] SiteKiosk.WindowList.NotificationArea.Item(index).Icon
    
Possible Values
    HICON value that retrieves the handle of the icon.

    The property is read only.
Remarks
    None.
Examples
    The following example shows the handle of the first existing icon.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.WindowList.NotificationArea.Item(1).Icon);
    </SCRIPT>
    

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

Back to top