Function: mouse-drag-right-edge

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

Signature

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

Documentation

Drag right 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-right-edge (start-event)
  "Drag right 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 'right))