State Property
The State property contains the visibility status of the icon.
Syntax
[dword=] SiteKiosk.WindowList.NotificationArea.Item(index).State
|
Possible Values
DWORD value that retrieves the visibility status.
|
The property is read only.
Remarks
Possible values:
1 = Hidden
2 = Shown
Examples
The following example shows the visibility status of the first existing icon.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
alert(SiteKiosk.WindowList.NotificationArea.Item(1).State);
</SCRIPT>
|
Applies to
SiteKiosk v5.5 (and later versions).
Back to top