Function: ses-cell-property

ses-cell-property is a macro defined in ses.el.gz.

Signature

(ses-cell-property PROPERTY-NAME ROW &optional COL)

Documentation

Get property named PROPERTY-NAME from a CELL or a pair (ROW,COL).

When COL is omitted, CELL=ROW is a cell object. When COL is present ROW and COL are the integer coordinates of the cell of interest.

Source Code

;; Defined in /usr/src/emacs/lisp/ses.el.gz
(defmacro ses-cell-property (property-name row &optional col)
  "Get property named PROPERTY-NAME from a CELL or a pair (ROW,COL).

When COL is omitted, CELL=ROW is a cell object.  When COL is
present ROW and COL are the integer coordinates of the cell of
interest."
  (declare (debug t))
  `(alist-get ,property-name
              (ses-cell--properties
               ,(if col `(ses-get-cell ,row ,col) row))))