JavaScript Reference/Javascript Properties/boundingWidth

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

"boundingWidth" Example

    
<html>
<body>
<textarea id="myText" cols="70" rows="2" onclick="function1(this);">
Sample text for the document</textarea>
<button onclick="function2()">Bounding Width</button>
<script language="JavaScript">
    function function2() {
        var m = myText.createTextRange(); 
        alert(m.boundingWidth);
    }
</script> 
</body>
</html>



"boundingWidth" is applied to

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



"boundingWidth" Syntax and Note

Note:
Read-only properties. 
Retrieve the width of the bounding rectangle.
    
Syntax:
    
TextRangeName.boundingwIDTH