InfoTitle Property



 
The InfoTitle property contains the title of the balloon.


Syntax

    [str=] SiteKiosk.WindowList.NotificationArea.Item(index).InfoTitle
    
Possible Values
    String that retrieves the title of the balloon.

    The property is read only.
Remarks
    A balloon containing information text will be displayed under Windows 2000/XP if balloon tip has been enabled in the SiteKiosk configuration.
Examples
    The following example shows the balloon title of the first existing icon in an alert window.

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

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

Back to top