Function: icalendar-transp-property-p

icalendar-transp-property-p is a byte-compiled function defined in icalendar-parser.el.gz.

Signature

(icalendar-transp-property-p NODE)

Documentation

Return non-nil if NODE represents a TRANSP property.

Source Code

;; Defined in /usr/src/emacs/lisp/calendar/icalendar-parser.el.gz
(ical:define-property ical:transp "TRANSP"
  "Time Transparency for free/busy searches.

Note that this property only allows two values: \"TRANSPARENT\"
or \"OPAQUE\".  An OPAQUE value means that the component consumes
time on a calendar.  TRANSPARENT means it does not, and thus is
invisible to free/busy time searches."
  ;; Note that this does NOT allow arbitrary text:
  (or "TRANSPARENT"
      "OPAQUE")
  :default "OPAQUE"
  :child-spec (:zero-or-more (ical:otherparam))
  :link "https://www.rfc-editor.org/rfc/rfc5545#section-3.8.2.7")