IsFromSession Property



 
The IsFromSession property indicates if the favorite has been created in the current session.


Syntax

    [bool=] SiteKiosk.Favorites.Item(index).IsFromSession
Possible Values
    Boolean value that retrieves the isfromsession state.

    The property is read only.
Remarks
    None.
Examples
    The following example determines if the first existing favorite has been created in the current session and shows it in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.Favorites.Item(1).IsFromSession);
    </SCRIPT>

Applies to
    SiteKiosk v5.5 (and later versions).

Back to top