IsWindow Property



 
The IsWindow property indicates whether the dialog is a window.


Syntax

    [bool=] SKHtmlDialog.IsWindow
Possible Values
    Boolean value that retrieves the window status.

    The property is read only.
Remarks
    None.
Examples
    The following example determines if the dialog is a window and shows it in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    mydialog = SiteKiosk.SiteKioskUI.CreateHTMLDialog();
    mydialog.URL = "http://www.myaddress.com";
    mydialog.ShowDialog();
    alert(mydialog.IsWindow);
    </SCRIPT>
    

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

Back to top