StartPage Property



 
The StartPage property indicates whether this is the startpage zone.


Syntax

    SiteCashZone.StartPage [=bool]
    
Possible Values
    Boolean value that specifies or retrieves the startpage status.

    The property is read/write.
Remarks
    None.
Examples
    The following example determines whether the first existing zone is the startpage zone and shows it in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.Plugins("SiteCash").Zones.Item(1).StartPage);
    </SCRIPT>
    

Applies to
    SiteKiosk v6.0 (and later versions).

Back to top