DOMRectReadOnly
The DOMRectReadOnly interface specifies the standard properties (also used by DOMRect) to define a rectangle whose properties are immutable.
Extended by
Methods
toJSON()
toJSON(): any;
The DOMRectReadOnly method toJSON() returns a JSON representation of the DOMRectReadOnly object.
Returns
any
Properties
bottom
readonly bottom: number;
The bottom read-only property of the DOMRectReadOnly interface returns the bottom coordinate value of the DOMRect. (Has the same value as y + height, or y if height is negative.)
height
readonly height: number;
The height read-only property of the DOMRectReadOnly interface represents the height of the DOMRect.
left
readonly left: number;
The left read-only property of the DOMRectReadOnly interface returns the left coordinate value of the DOMRect. (Has the same value as x, or x + width if width is negative.)
right
readonly right: number;
The right read-only property of the DOMRectReadOnly interface returns the right coordinate value of the DOMRect. (Has the same value as x + width, or x if width is negative.)
top
readonly top: number;
The top read-only property of the DOMRectReadOnly interface returns the top coordinate value of the DOMRect. (Has the same value as y, or y + height if height is negative.)
width
readonly width: number;
The width read-only property of the DOMRectReadOnly interface represents the width of the DOMRect.
x
readonly x: number;
The x read-only property of the DOMRectReadOnly interface represents the x coordinate of the DOMRect's origin.
y
readonly y: number;
The y read-only property of the DOMRectReadOnly interface represents the y coordinate of the DOMRect's origin.