DisplayText Property



 
The DisplayText property contains the description of the application.


Syntax

    [str=] SiteKiosk.ExternalApps.Item(index).DisplayText
Possible Values
    String that retrieves the description.

    The property is read only.
Remarks
    None.
Examples
    The following example shows the description of the first application that was configured.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    alert(SiteKiosk.ExternalApps.Item(1).DisplayText);
    </SCRIPT>
    

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

Back to top