INNERBORDER Attribute | innerBorder参数属性
| DHTML文档教程 |
Sets or retrieves whether the inside 3-D border is displayed.
dhtml语法
HTML | <HTA:APPLICATION INNERBORDER
= sInnerBorder... >
|
---|
Scripting | [ sInnerBorder = ] HTA:APPLICATION.innerBorder |
---|
DHTML可能的值
sInnerBorder | Stringthat specifies one of the following values. yes | Default. Three-dimensional inner border is displayed. | no | Inner border is not displayed. |
|
The property is read-only.
The property has a default value of
yes.
Remarks
Note The innerBorder property is read only, however the INNERBORDER attribute can be used to set the initial value.
DHTML代码范例
This example shows how to retrieve the innerBorder property.
<HTML>
<HEAD>
<HTA:APPLICATION
ID=oHTA
INNERBORDER="no"/>
<TITLE>HTA Properties</TITLE>
<STYLE>
BODY {font-size: 8pt; font-family: Arial;}
</STYLE>
</HEAD>
<SCRIPT>
function readFun()
{
alert("The innerBorder property is set to: " + oHTA.innerBorder);
}
</SCRIPT>
<BODY>
<P>Read the property:
<INPUT TYPE="button" VALUE="Test innerBorder value" onClick="readFun()"/>
</P>
</BODY>
</HTML>
是否符合公共标准
There is no public standard that applies to this property.
Applies To