Function: org-columns-show-value
org-columns-show-value is an interactive and byte-compiled function
defined in org-colview.el.gz.
Signature
(org-columns-show-value)
Documentation
Show the full value of the property.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/org/org-colview.el.gz
(defun org-columns-show-value ()
"Show the full value of the property."
(interactive)
(let ((value (get-char-property (point) 'org-columns-value)))
(message "Value is: %s" (or value ""))))