Function: xwidget-get

xwidget-get is a byte-compiled function defined in xwidget.el.gz.

Signature

(xwidget-get XWIDGET PROPNAME)

Documentation

Get an xwidget's property value.

XWIDGET is an xwidget, PROPNAME a property. Returns the last value stored with xwidget-put.

Source Code

;; Defined in /usr/src/emacs/lisp/xwidget.el.gz
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Xwidget plist management (similar to the process plist functions)

(defun xwidget-get (xwidget propname)
  "Get an xwidget's property value.
XWIDGET is an xwidget, PROPNAME a property.
Returns the last value stored with `xwidget-put'."
  (plist-get (xwidget-plist xwidget) propname))