ShortName Property



 
The ShortName property contains a short device description.


Syntax

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

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

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

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

Back to top