RDOException object

 

RDOException represents an exception in the recurrence pattern of a recurring appointment .

 

Returned by:

RDOExceptions.Item

 

The example below lists all exceptions of a recurring appointment.

set Pattern = Appointment.GetRecurrencePattern
set Exceptions = Pattern.Exceptions
for each Exception in Exceptions
    Debug.Print "Original date: " & Exception.OriginalDate
    set Item = Exception.Item
    if not Item Is Nothing Then 'it can be NULL if it is a deleted exception
        Debug.Print "New date: " & Item.Start
    End If
next

 

Properties

 


Derived from: IDispatch


Properties


Deleted

Boolean, read-only. True if if the exception is deleted. False if changed.
 

 

Item

RDOMail, read-only. Returns the appointment corresponding to the exception. If the instance was deleted (Deleted property is true), NULL is returned

 

 

OriginalDate

DateTime, read-only. Returns the original date and time of the recurrence instance. If the instance was modified (rather than deleted), retrieve the exception appointment using the Item property and read the Start property (see the example above)