top property
int?
get
top
The number of pixels to position the new window from the top edge of the screen. If not specified, the new window is offset naturally from the last focused window. This value is ignored for panels.
Implementation
int? get top => _wrapped.top;
set
top
(int? v)
Implementation
set top(int? v) {
_wrapped.top = v;
}