Function: window-pixel-left
window-pixel-left is a function defined in window.c.
Signature
(window-pixel-left &optional WINDOW)
Documentation
Return left pixel edge of window WINDOW.
WINDOW must be a valid window and defaults to the selected one.
Source Code
// Defined in /usr/src/emacs/src/window.c
{
return make_fixnum (decode_valid_window (window)->pixel_left);
}