Function: mouse-drag-bottom-edge

mouse-drag-bottom-edge is an interactive and byte-compiled function defined in mouse.el.gz.

Signature

(mouse-drag-bottom-edge START-EVENT)

Documentation

Drag bottom edge of a frame with the mouse.

START-EVENT is the starting mouse event of the drag action.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/mouse.el.gz
(defun mouse-drag-bottom-edge (start-event)
  "Drag bottom edge of a frame with the mouse.
START-EVENT is the starting mouse event of the drag action."
  (interactive "e")
  (mouse-drag-frame-resize start-event 'bottom))