Timeout Property



 
The Timeout property contains the timeout period of the balloon.


Syntax

    [dword=] SiteKiosk.WindowList.NotificationArea.Item(index).Timeout
    
Possible Values
    DWORD value that retrieves the timeout period.

    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 timeout period of the first existing icon.

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

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

Back to top