ValidDuration Property
The ValidDuration property contains the number of seconds the account will be valid after the activation (first login).
Syntax
[long=] SiteKiosk.Plugins("SiteCash").Devices("SiteCafeClient").
ValidDuration
|
Possible Values
Long value that retrieves the duration.
|
The property is read only.
Remarks
This property is constant.
Durations are a number of seconds.
Examples
The following example displays the number of seconds the account will be valid after the activation.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteCafe = SiteKiosk.Plugins("SiteCash").Devices("SiteCafeClient");
alert(SiteCafe.ValidDuration);
</SCRIPT>
|
Applies to
SiteKiosk v6.2 (and later versions).
Back to top