Visible Property



 
The Visible property indicates whether the dialog is visible.


Syntax

    SKHtmlDialog.Visible [=bool]
Possible Values
    Boolean value that specifies or retrieves the visibility.

    The property is read/write.
Remarks
    None.
Examples
    The following example determines the visibility of an existing dialog 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.Visible);
    </SCRIPT>
    

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

Back to top