Report an issue
Class

CKEDITOR.dom.rect

class abstract

Virtual class that illustrates the CKEDITOR.dom.element DOM rectangle (dimensions and coordinates of the area that the element occupies on the page).

Filtering

Properties

  • bottom : Number

    Element's bottom edge offset from the viewport's top edge.

    This value is the same as the top value plus the height value.

  • height : Number

    Element's height.

  • left : Number

    Element's offset from the viewport's left edge.

  • right : Number

    Element's right edge offset from the viewport's left edge.

    This value is the same as the left value plus the width value.

  • top : Number

    Element's offset from the viewport's top edge.

  • width : Number

    Element's width.

  • x : Number

    Element's offset from the viewport's left edge.

    This property is not available in Internet Explorer or Edge.

  • y : Number

    Element's offset from the viewport's top edge.

    This property is not available in Internet Explorer or Edge.