Function: xwidget-put

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

Signature

(xwidget-put XWIDGET PROPNAME VALUE)

Documentation

Set an xwidget's property value.

XWIDGET is an xwidget, PROPNAME a property to be set to specified VALUE. You can retrieve the value with xwidget-get.

Source Code

;; Defined in /usr/src/emacs/lisp/xwidget.el.gz
(defun xwidget-put (xwidget propname value)
  "Set an xwidget's property value.
XWIDGET is an xwidget, PROPNAME a property to be set to specified VALUE.
You can retrieve the value with `xwidget-get'."
  (set-xwidget-plist xwidget
                     (plist-put (xwidget-plist xwidget) propname value)))