Name Property



 
The Name property contains a long device description.


Syntax

    [str=] SiteKiosk.Plugins("SiteCash").Devices2.Item(index).Name
    
Possible Values
    String that retrieves the long description.

    The property is read only.
Remarks
    None.
Examples
    The following example shows the long description of the first existing device in an alert window.

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

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

Back to top