廃止
This feature is obsolete. Although it may still work in some browsers, its use is discouraged since it could be removed at any time. Try to avoid using it.
概要
指定要素の boxObject
(x 座標 / y 座標 / 幅 / 高さ) を返します。
注記: このメソッドは廃止済です。代わりに
element.getBoundingClientRect()
メソッドを用います。構文
boxObject = document.getBoxObjectFor(element);
- boxObject :
nsIBoxObject
- element :
element
例
var myDiv = document.getElementById("myDiv"), boxObj = document.getBoxObjectFor (myDiv); alert ( "x:" + boxObj.x + ", y:" + boxObj.y + ", Width:" + boxObj.width + ", Height:" + boxObj.height );
注記
このメソッドは nsIXULDocument.idl で定められました。