Variable: org-icalendar-use-scheduled
org-icalendar-use-scheduled is a customizable variable defined in
ox-icalendar.el.gz.
Value
(todo-start)
Documentation
Contexts where iCalendar export should use a scheduling time stamp.
This is a list with possibly several symbols in it. Valid symbols are:
event-if-todo
Scheduling time stamps in TODO entries become an event.
event-if-todo-not-done
Scheduling time stamps in TODO entries with not-DONE state
become events.
event-if-not-todo
Scheduling time stamps in non-TODO entries become an event.
todo-start
Scheduling time stamps in TODO entries become start date. Some
calendar applications show TODO entries only after that date.
Source Code
;; Defined in /usr/src/emacs/lisp/org/ox-icalendar.el.gz
(defcustom org-icalendar-use-scheduled '(todo-start)
"Contexts where iCalendar export should use a scheduling time stamp.
This is a list with possibly several symbols in it. Valid symbols are:
`event-if-todo'
Scheduling time stamps in TODO entries become an event.
`event-if-todo-not-done'
Scheduling time stamps in TODO entries with not-DONE state
become events.
`event-if-not-todo'
Scheduling time stamps in non-TODO entries become an event.
`todo-start'
Scheduling time stamps in TODO entries become start date. Some
calendar applications show TODO entries only after that date."
:group 'org-export-icalendar
:type
'(set :greedy t
(const :tag "SCHEDULED timestamps in non-TODO entries become events"
event-if-not-todo)
(const :tag "SCHEDULED timestamps in TODO entries become events"
event-if-todo)
(const :tag "SCHEDULED in TODO entries with not-DONE state become events"
event-if-todo-not-done)
(const :tag "SCHEDULED in TODO entries become start date"
todo-start)))