DeviceName Property



 
The DeviceName property contains the name of this device.


Syntax

    [str=] SiteKiosk.Plugins("SiteCash").Devices("ScriptDevice").DeviceName
    
Possible Values
    String that retrieves the name.

    The property is read only.
Remarks
    The name of this device can be defined in the SiteKiosk configuration.
Examples
    The following example shows the name of this device in an alert window.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    scash = SiteKiosk.Plugins("SiteCash").Devices("ScriptDevice");
    alert(scash.DeviceName);
    </SCRIPT>
    

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

Back to top