Function: window-pixel-height

window-pixel-height is a function defined in window.c.

Signature

(window-pixel-height &optional WINDOW)

Documentation

Return the height of window WINDOW in pixels.

WINDOW must be a valid window and defaults to the selected one.

The return value includes the mode line and header line and the bottom divider, if any. If WINDOW is an internal window, its pixel height is the height of the screen areas spanned by its children.

Source Code

// Defined in /usr/src/emacs/src/window.c
{
  return make_fixnum (decode_valid_window (window)->pixel_height);
}