JavaScript Reference/Javascript Properties/boundingHeight

Материал из Web эксперт
Версия от 11:21, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

"boundingHeight" Example

   <source lang="javascript">
   

<html> <body> <textarea id="myText" cols="70" rows="2" onclick="function1(this);"> Sample text for the document </textarea> <button onclick="function1()">Bounding Height</button> <script language="JavaScript">

   function function1() {
       var m = myText.createTextRange(); 
       alert(m.boundingHeight);
   }

</script> </body> </html>


     </source>
   
  


"boundingHeight" is applied to

   <source lang="javascript">

+----------------+--------------------------------------------------------------+ | Applied_To |TextRange | +----------------+--------------------------------------------------------------+

     </source>
   
  


"boundingHeight" Syntax and Note

   <source lang="javascript">

Note: Read-only properties. Retrieve the height of the bounding rectangle.

Syntax:

TextRangeName.boundingHeight


     </source>