GuidItem Property



 
The GuidItem property contains the GUID of the icon.


Syntax

    [str=] SiteKiosk.WindowList.NotificationArea.Item(index).GuidItem
    
Possible Values
    String that retrieves the GUID.

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

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

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

Back to top