Function: window-pixel-edges

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

Signature

(window-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 PIXELWISE non-nil.

View in manual

Probably introduced at or before Emacs version 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/window.el.gz
(defun window-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
PIXELWISE non-nil."
  (declare (side-effect-free t))
  (window-edges window nil nil t))