Retrieves the name and location of the icon specified in the HTML Application (HTA).
Syntax
HTML <HTA:APPLICATION ICON=sIcon> Scripting [ sIcon = ] oHTA.icon
Possible Values
sIcon String that specifies an icon for the application. The property is read-only with a default value of the system application icon.
Remarks
The icon attribute recognizes the standard 32x32 pixel Microsoft® Windows® format for .ico image files.
Example
This example shows how to retrieve the icon property.
Sample Code
<HTML> <HEAD> <HTA:APPLICATION ID="oHTA" APPLICATIONNAME="myApp" ICON="graphics/face01.ico" > <SCRIPT> alert ("icon = " + oHTA.icon); </SCRIPT> </HEAD> <BODY SCROLL="no"> </BODY> </HTML>
Applies To
HTA:APPLICATION
See Also