Retrieves the type of window border for the HTML Application (HTA).
Syntax
HTML <HTA:APPLICATION BORDER=sType> Scripting [ sType = ] oHTA.border
Possible Values
sType String that specifies one of the following values:
thick Thick window border, plus a size grip and sizing border for resizing the window. dialog Dialog window border. none No window border. thin Thin window border with a caption. The property is read-only with a default value of thick.
Remarks
The border property affects the window border and is valid only for HTA windows that contain a title bar or caption. Setting border to none eliminates the title bar, program icon, and Minimize/Maximize buttons. This property can be used with the borderStyle property, which controls the content border within the window.
Example
This example uses the border property to apply a thin border to the window.
Sample Code
<HTML> <HEAD> <TITLE>Hello, World!</TITLE> <HTA:APPLICATION ID="oHTA" APPLICATIONAME="myApp" BORDER="thin" > <SCRIPT> alert("border = " + oHTA.border); </SCRIPT> </HEAD> <BODY SCROLL="no"> </BODY> </HTML>
Applies To
HTA:APPLICATION
See Also