offset property - Element class - dart:html library (original) (raw)

description

Rectangle<num> getoffset

Gets the offset of this element relative to its offsetParent.

Implementation

Rectangle get offset =>
    new Rectangle(offsetLeft, offsetTop, offsetWidth, offsetHeight);