Icon Property
The Icon property contains information about the icon used to represent the window.
Syntax
Possible Values
HICON value that retrieves the icon handle.
|
The property is read only.
Remarks
Examples
The following example reads the current Icon property and shows it in an alert window.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
thiswindow = SiteKiosk.WindowList.ActiveWindow;
alert(thiswindow.Icon);
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top