Function: icalendar-match-dtend-property

icalendar-match-dtend-property is a byte-compiled function defined in icalendar-parser.el.gz.

Signature

(icalendar-match-dtend-property LIMIT)

Documentation

Matcher for icalendar-dtend property.

(Defined by icalendar-define-property.)

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(ical:define-property ical:dtend "DTEND"
  "End time of an event or free/busy block.

This property's value specifies when an `icalendar-vevent' or
`icalendar-freebusy' ends.  Its value must be of the same type as
the value of the component's corresponding `icalendar-dtstart'
property.  The value is a non-inclusive bound, i.e., the value of
this property must be the first time or date *after* the end of
the event or free/busy block."
  (or ical:date-time
      ical:date)
  :default-type ical:date-time
  :other-types (ical:date)
  :child-spec (:zero-or-one (ical:valuetypeparam ical:tzidparam)
               :zero-or-more (ical:otherparam))
  :other-validator ical:property-w/tzid-validator
  :link "https://www.rfc-editor.org/rfc/rfc5545#section-3.8.2.2")