Maximized Property
The Maximized property indicates if the dialog is maximized.
Syntax
[bool=] SKHtmlDialog.Maximized
|
Possible Values
Boolean value that retrieves the maximized status.
|
The property is read only.
Remarks
Examples
The following example determines if the dialog is maximized 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.Maximized)">show maximized status<a>
|
Applies to
SiteKiosk v5.5 (and later versions).
Back to top