Javascript Properties JavaScript Reference




Sample text for the document
Bounding Height
Bounding Width
Bounding Left
Bounding Top

    function function1() {
        var m = myText.createTextRange(); 
        alert(m.boundingHeight);
    }
    function function2() {
        var m = myText.createTextRange(); 
        alert(m.boundingWidth);
    }
    function function3() {
        var m = myText.createTextRange(); 
        alert(m.boundingLeft);
    }
    function function4() {
        var m = myText.createTextRange(); 
        alert(m.boundingTop);
    }