Home | Top | Free Ajax Editor | JavaScript Editor JavaScript EditorGet Advanced
JavaScript and Ajax Editor,
Validator and Debugger!

1st JavaScript Editor.


boundingTop Property

Retrieves the distance between the top edge of the rectangle that bounds the TextRange object and the top side of the object that contains the TextRange .

Syntax

[ iTop = ] TextRange . boundingTop

Possible Values

iTop Integer that receives the top coordinate of the bounding rectangle, in pixels.

The property is read-only. The property has no default value.

Example

This example retrieves the value of the boundingTop property for the given text area.

 

<SCRIPT>
function boundDim(oObject)
{ var collTextarea = document.all.tags("TEXTAREA");
if (collTextarea != null)
{ var oTextRange = oObject.createTextRange();
if (oTextRange != null)
{ alert("The bounding top is \n" + oTextRange. boundingTop ); } } }
</SCRIPT>
</HEAD>
<BODY>
<TEXTAREA COLS=100 ROWS=2 ID=oTextarea onclick="boundDim(this)"> . . . </TEXTAREA>

Standards Information

There is no public standard that applies to this property.

Applies To

[ Object Name ] Platform Version
Win16:
Win32:
Windows CE:
Unix:
 
TextRange
Home | Top | Free Ajax Editor | JavaScript Editor JavaScript EditorGet Advanced
JavaScript and Ajax Editor,
Validator and Debugger!

1st JavaScript Editor.