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. (See
also org-icalendar-todo-unscheduled-start, which controls the
start date for TODO entries without a scheduling time stamp)
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. (See
also `org-icalendar-todo-unscheduled-start', which controls the
start date for TODO entries without a scheduling time stamp)"
: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)))