Function: hycontrol-frame-y-origin

hycontrol-frame-y-origin is a byte-compiled function defined in hycontrol.el.

Signature

(hycontrol-frame-y-origin &optional FRAME)

Documentation

Return the Y origin coordinate of optional FRAME or the selected frame.

This includes all graphical window manager decorations. The Y origin coordinate is the upper left point. Under a graphical window system, this is in pixels; otherwise, it is in characters.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hycontrol.el
(defsubst hycontrol-frame-y-origin (&optional frame)
  "Return the Y origin coordinate of optional FRAME or the selected frame.
This includes all graphical window manager decorations.  The Y
origin coordinate is the upper left point.  Under a graphical
window system, this is in pixels; otherwise, it is in characters."
  (nth 1 (hycontrol-frame-edges frame)))