Function: org-table-cut-region

org-table-cut-region is an autoloaded, interactive and byte-compiled function defined in org-table.el.gz.

Signature

(org-table-cut-region BEG END)

Documentation

Copy region in table to the clipboard and blank all relevant fields.

If there is no active region, use just the field at point.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/org/org-table.el.gz
;;;###autoload
(defun org-table-cut-region (beg end)
  "Copy region in table to the clipboard and blank all relevant fields.
If there is no active region, use just the field at point."
  (interactive (list
		(if (org-region-active-p) (region-beginning) (point))
		(if (org-region-active-p) (region-end) (point))))
  (org-table-copy-region beg end 'cut))