PauseDevice Property
The PauseDevice property reads or sets the pause status of a ccTalk device.
Syntax
[bool=] SiteKiosk.Plugins("SiteCash").Devices("ccTalk").PauseDevice
|
Possible Values
Boolean value. True if the device is paused.
False if the device is active.
|
The property is read/write.
Remarks
Examples
The following example shows the current pause status of the device in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.Plugins("SiteCash").Devices("ccTalk").PauseDevice);
</SCRIPT>
|
Applies to
SiteKiosk v6.6 (and later versions).
Back to top