Retrieves the height of the rectangle that bounds the TextRange object.
Syntax
HTML N/A Scripting [ iHeight = ] TextRange.boundingHeight
Possible Values
iHeight Integer that specifies the height of the bounding rectangle, in pixels. The property is read-only with no default value.
Example
This example retrieves the value of the boundingHeight property for the given text area.
Sample Code
<SCRIPT> function boundDim(oObject) { var collTextarea = document.all.tags("TEXTAREA"); if (collTextarea != null) { var oTextRange = oObject.createTextRange(); if (oTextRange != null) { alert("The bounding height is \n" + oTextRange.boundingHeight); } } } </SCRIPT> </HEAD> <BODY> <TEXTAREA COLS=100 ROWS=2 ID=oElmnt1 onclick="boundDim(this)"> . . . </TEXTAREA>
Applies To
HTML N/A Scripting TextRange
See Also
boundingLeft, boundingTop, boundingWidth