IsMaximized Method
The IsMaximized method returns if an existing window is maximized.
Syntax
[bool=] SiteKiosk.WindowList.IsMaximized(handle)
|
Parameters
handle |
Handle that represents a window. |
Return Value
Returns a Boolean value that indicates if the window is maximized or not.
Remarks
Examples
The following example shows the current maximized status in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
thiswindow = SiteKiosk.WindowList.ActiveWindow;
alert(SiteKiosk.WindowList.IsMaximized(thiswindow.Handle));
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top