Back to Content

DOMRectReadOnly: fromRect() static method

files/en-us/web/api/domrectreadonly/fromrect_static/index.md

latest834 B
Original Source

{{APIRef("Geometry Interfaces")}}{{AvailableInWorkers}}

The fromRect() static method of the {{domxref("DOMRectReadOnly")}} object creates a new DOMRectReadOnly object with a given location and dimensions.

Syntax

js-nolint
DOMRectReadOnly.fromRect()
DOMRectReadOnly.fromRect(rectangle)

Parameters

  • rectangle {{optional_inline}}
    • : An object specifying the location and dimensions of a rectangle. All properties default to 0. The properties are:
      • x: The coordinate of the left side of the rectangle.
      • y: The coordinate of the top side of the rectangle.
      • width: The width of the rectangle.
      • height: The height of the rectangle.

Return value

An instance of {{domxref("DOMRectReadOnly")}}.

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}