top property

int? get top

The offset from the top edge of the screen to move the window to in pixels. This value is ignored for panels.

Implementation

int? get top => _wrapped.top;
set top (int? v)

Implementation

set top(int? v) {
  _wrapped.top = v;
}