Function: icalendar-with-property-of
icalendar-with-property-of is a function alias for
icalendar-with-child-of, defined in icalendar-macs.el.gz.
Signature
(icalendar-with-property-of ARG1 ARG2 &rest REST)
Documentation
Like icalendar-with-property, but for components containing that property.
Find the first property node of type TYPE in NODE and execute BODY.
Within BODY, the symbols value-node, value-type, and value will be
bound to the property's value node, type and value as in
icalendar-with-node-value. If BODY is nil, it is assumed to be the
symbol value; thus
(icalendar-with-property-of some-component some-type)
is equivalent to
(icalendar-with-property-of some-component some-type nil value)
BINDINGS can be used to bind the property's parameters; see
icalendar-with-node-children for the form of BINDINGS.
Other relevant functions are documented in the icalendar group.
Shortdoc
;; icalendar
(icalendar-with-property-of vevent 'icalendar-location nil
(downcase value))
e.g. => "robot house"