offset property - Element class - dart:html library (original) (raw)
Gets the offset of this element relative to its offsetParent.
Implementation
Rectangle get offset =>
new Rectangle(offsetLeft, offsetTop, offsetWidth, offsetHeight);
Gets the offset of this element relative to its offsetParent.
Rectangle get offset =>
new Rectangle(offsetLeft, offsetTop, offsetWidth, offsetHeight);