Minimized Property



 
The Minimized property indicates if the dialog is minimized.


Syntax

    [bool=] SKHtmlDialog.Minimized
Possible Values
    Boolean value that retrieves the minimized status.

    The property is read only.
Remarks
    None.
Examples
    The following example determines if the dialog is minimized 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();
    </SCRIPT>
    <a href="alert(mydialog.Minimized)">show minimized status<a>
    

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

Back to top