ExpireDuration Property
The ExpireDuration property contains the expiry duration after a logout.
Syntax
[long=] SiteKiosk.Plugins("SiteCash").Devices("SiteCafeClient").
ExpireDuration
|
Possible Values
Long value that retrieves the duration.
|
The property is read only.
Remarks
When the account is logged out for this contiguous period of time, it expires (0 = never).
This property is constant.
Durations are a number of seconds.
Examples
The following example displays the remaining time until the account expires.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteCafe = SiteKiosk.Plugins("SiteCash").Devices("SiteCafeClient");
alert(SiteCafe.ExpireDuration);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top