SiteKioskApp Property
The SiteKioskApp property indicates if the program has been defined as an external application in the SiteKiosk configuration.
Syntax
[bool=] SiteKiosk.WindowList.NotificationArea.Item(index).SiteKioskApp
|
Possible Values
Boolean value that retrieves the status.
|
The property is read only.
Remarks
Examples
The following example determines if the program of the first existing icon has been defined an an external application in the SiteKiosk configuration.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.WindowList.NotificationArea.Item(1).SiteKioskApp);
</SCRIPT>
|
Applies to
SiteKiosk v5.5 (and later versions).
Back to top