NotificationArea Collection



 
The NotificationArea collection provides information about the taskbar notification area.


Members Table

    The following table lists the members provided by the NotificationArea collection.

    Members
    Properties Description
    Count The number of currently existing notify icons.
    DisplayNotifyWindow If the notification area is enabled.
    DisplayOnlySiteKioskApps If the notification area should only show programs that have been started by SiteKiosk.
    VisibleIconCount The number of currently visible notify icons.
    Methods Description
    Item Returns one item of the collection.
    Events Description
    OnInserted Fires when a new icon has been added.
    OnModified Fires when an existing icon has been modified.
    OnRemoved Fires when an icon has been removed.
    OnSetFocus Fires when the focus has been set.

Remarks
    This collection is available through the object WindowList. Use the NotificationArea collection to receive information about the taskbar notification area or to change the appearance and behaviour of notification icons.

    Note that the path of a file using SiteKiosk objects must be allowed in the
    SiteKiosk configuration (Security -> Access -> URL's With Script Permission)
    if it is not a browser skin file.
Examples
    The following example shows the number of currently existing notify icons.

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

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

Back to top