Function: frame-outer-height

frame-outer-height is a byte-compiled function defined in frame.el.gz.

Signature

(frame-outer-height &optional FRAME)

Documentation

Return outer height of FRAME in pixels.

FRAME defaults to the selected frame.

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/frame.el.gz
(defun frame-outer-height (&optional frame)
  "Return outer height of FRAME in pixels.
FRAME defaults to the selected frame."
  (setq frame (window-normalize-frame frame))
  (let ((edges (frame-edges frame 'outer-edges)))
    (- (nth 3 edges) (nth 1 edges))))