Package | cssom.view |
Interface | public interface RangeView |
Implementors | Range |
Introduced in: | DOM 2 TR |
See also
Method | Defined By | ||
---|---|---|---|
Retrieves an object that specifies the bounds of a collection of TextRectangle objects. | RangeView | ||
Retrieves a collection of rectangles that describes the layout of the
contents of an object or range within the client. | RangeView |
CSSOM View getBoundingClientRect | () | method |
public function getBoundingClientRect():TextRectangle
Product Versions : | 5.5 6.0 7.0 8.0 as IE7 8.0 as IE8 2.0 3.0 3.1b 3.0 3.1 4.0b 1.0 2.0 9.62 10.0a |
Introduced in: | DOM 2 TR |
Retrieves an object that specifies the bounds of a collection of TextRectangle objects.
ReturnsTextRectangle — The returned value is a TextRectangle object which is the union
of the rectangles returned by getClientRects() for the element, i.e.,
the CSS border-boxes associated with the element.
|
See also
CSSOM View getClientRects | () | method |
public function getClientRects():TextRectangleList
Product Versions : | 5.5 6.0 7.0 8.0 as IE7 8.0 as IE8 2.0 3.0 3.1b 3.0 3.1 4.0b 1.0 2.0 9.62 10.0a |
Introduced in: | DOM 2 TR |
Retrieves a collection of rectangles that describes the layout of the contents of an object or range within the client. Each rectangle describes a single line.
ReturnsTextRectangleList |
See also