Handle Property



 
The Handle property contains the window handle.


Syntax

    [HWND=] WindowInfo.Handle
    
Possible Values
    HWND value that retrieves the window handle.

    The property is read only.
Remarks
    None.
Examples
    The following example shows the current window handle in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    thiswindow = SiteKiosk.WindowList.ActiveWindow;
    alert(thiswindow.Handle);
    </SCRIPT>
    

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

Back to top