--- title: document.getBoxObjectFor slug: Web/API/Document/getBoxObjectFor tags: - DOM - Document - Method - Obsolete - Reference - メソッド translation_of: Web/API/Document/getBoxObjectFor ---
{{ApiRef("DOM")}} {{obsolete_header}}

指定要素の boxObject (x 座標 / y 座標 / 幅 / 高さ) を返します。

メモ: このメソッドは廃止済です。代わりに {{domxref("element.getBoundingClientRect()")}} メソッドを使用してください。

構文

boxObject = document.getBoxObjectFor(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 で定められました。

ブラウザーの対応

{{Compat("api.Document.getBoxObjectFor")}}