Function: window-absolute-pixel-edges

window-absolute-pixel-edges is a byte-compiled function defined in window.el.gz.

Signature

(window-absolute-pixel-edges &optional WINDOW)

Documentation

Return a list of the edge pixel coordinates of WINDOW.

The return value is that of window-edges called with argument ABSOLUTE non-nil.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/window.el.gz
(defun window-absolute-pixel-edges (&optional window)
  "Return a list of the edge pixel coordinates of WINDOW.
The return value is that of `window-edges' called with argument
ABSOLUTE non-nil."
  (declare (side-effect-free t))
  (window-edges window nil t t))