Retrieves whether a Maximize button is displayed in the title bar of the HTML Application (HTA) window.
Syntax
HTML <HTA:APPLICATION MAXIMIZEBUTTON=bShowButton> Scripting [ bShowButton = ] oHTA.maximizeButton
Possible Values
bShowButton Boolean that specifies one of the following values:
yes Maximize button is displayed. no Maximize button is not displayed. The property is read-only with a default value of yes.
Remarks
The window must have a title bar, or caption, for the Minimize and Maximize buttons to display.
Example
This example shows how to retrieve the maximizeButton property.
Sample Code
<HTML> <HEAD> <TITLE>Hello, World!</TITLE> <HTA:APPLICATION ID="oHTA" APPLICATIONNAME="myApp" CAPTION="yes" MAXIMIZEBUTTON="yes" > <SCRIPT> alert("maximizeButton = " + oHTA.maximizeButton); </SCRIPT> </HEAD> <BODY SCROLL="no"> </BODY> </HTML>
Applies To
HTA:APPLICATION
See Also