InfoFlags Property
The InfoFlags property contains the icon type.
Syntax
[dword=] SiteKiosk.WindowList.NotificationArea.Item(index).InfoFlags
|
Possible Values
DWORD value that retrieves the icon type.
|
The property is read only.
Remarks
Possible values:
0 = No icon
1 = Information icon
2 = Warning icon
3 = Error icon
16 = Do not play the associated sound. Applies only to balloon ToolTips.
Examples
The following example shows the icon type of the first existing icon.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.WindowList.NotificationArea.Item(1).InfoFlags);
</SCRIPT>
|
Applies to
SiteKiosk v5.5 (and later versions).
Back to top