Function: table--at-cell-p
table--at-cell-p is a byte-compiled function defined in table.el.gz.
Signature
(table--at-cell-p POSITION &optional OBJECT AT-COLUMN)
Documentation
Return non-nil if POSITION has table-cell property in OBJECT.
OBJECT is optional and defaults to the current buffer. If POSITION is at the end of OBJECT, the value is nil.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/table.el.gz
(defun table--at-cell-p (position &optional object at-column)
"Return non-nil if POSITION has table-cell property in OBJECT.
OBJECT is optional and defaults to the current buffer.
If POSITION is at the end of OBJECT, the value is nil."
(if (and at-column (stringp object))
(setq position (table--str-index-at-column object position)))
(get-text-property position 'table-cell object))