IsFolder Property
The IsFolder property indicates if the favorite is a folder.
Syntax
[bool=] SiteKiosk.Favorites.Item(index).IsFolder
|
Possible Values
Boolean value that retrieves the isfolder state.
|
The property is read only.
Remarks
Examples
The following example determines if the first existing favorite is a folder and shows it in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Favorites.Item(1).IsFolder);
</SCRIPT>
|
Applies to
SiteKiosk v5.5 (and later versions).
Back to top