IsPageVisible Method
The IsPageVisible method determines whether a specified configuration page is visible.
Syntax
[boolean=] SiteKioskConfig.IsPageVisible(name)
|
Parameters
ID |
String that specifies the name of the page. |
Return Value
Returns a Boolean value that is true if the page is visible and false if not.
Remarks
Examples
The following example shows the visibility of the favorites page in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKioskConfig.IsPageVisible("Favorites"));
</SCRIPT>
|
Applies to
SiteKiosk v6.0 (and later versions).
Back to top