JavaScript Reference/Javascript Properties/boundingLeft

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

"boundingLeft" Example

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



"boundingLeft" is applied to

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



"boundingLeft" Syntax and Note

Note:
Read-only properties. 
Gets the left padding size between the element"s container rectangle and the object.
    
Syntax:
    
TextRangeName.boundingLeft