Visible Property
The Visible property indicates if the window is visible.
Syntax
[bool=] WindowInfo.Visible
|
Possible Values
Boolean value that retrieves the visibility status.
|
The property is read only.
Remarks
Examples
The following example determines if the window is visible and shows it in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
thiswindow = SiteKiosk.WindowList.ActiveWindow;
alert(thiswindow.Visible);
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top