Function: widget-apply

widget-apply is an autoloaded and byte-compiled function defined in wid-edit.el.gz.

Signature

(widget-apply WIDGET PROPERTY &rest ARGS)

Documentation

Apply the value of WIDGET's PROPERTY to the widget itself.

Return the result of applying the value of PROPERTY to WIDGET. ARGS are passed as extra arguments to the function.

Source Code

;; Defined in /usr/src/emacs/lisp/wid-edit.el.gz
;;;###autoload
(defun widget-apply (widget property &rest args)
  "Apply the value of WIDGET's PROPERTY to the widget itself.
Return the result of applying the value of PROPERTY to WIDGET.
ARGS are passed as extra arguments to the function."
  (apply (widget-get widget property) widget args))