NotifyWindow Property



 
The NotifyWindow property contains the handle of the window to inform about clicks.


Syntax

    [hwnd=] SiteKiosk.WindowList.NotificationArea.Item(index).NotifyWindow
    
Possible Values
    HWND value that retrieves the handle of the notify window.

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

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

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

Back to top