Exception Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents information about one instance of an AppointmentItem object which is an exception to a recurring series.
public interface class Exception
[System.Runtime.InteropServices.Guid("0006304D-0000-0000-C000-000000000046")]
public interface Exception
Public Interface Exception
- Attributes
Remarks
Unlike most of the other Microsoft Outlook objects, the Exception object is a read-only object. This means that you cannot create an Exception object but, rather, the object is created when a property of an AppointmentItem is altered. For example, if you change the Start property of one AppointmentItem, you have created an Exception in AppointmentItem.RecurrencePattern.Exceptions.
Note: The Exceptions object is on the RecurrencePattern , not the AppointmentItem object itself.
When you work with recurring appointment items, you should release any prior references, obtain new references to the recurring appointment item before you access or modify the item, and release these references as soon as you are finished and have saved the changes. This practice applies to the recurring AppointmentItem object, and any Exception or RecurrencePattern object. To release a reference in Visual Basic, set that existing object to Nothing. In C#, explicitly release the memory for that object.
Note that even after you release your reference and attempt to obtain a new reference, if there is still an active reference, held by another add-in or Outlook, to one of the above objects, your new reference will still point to an out-of-date copy of the object. Therefore, it is important that you release your references as soon as you are finished with the recurring appointment.
Properties
Application |
Returns an Application object that represents the parent Outlook application for the object. Read-only. |
AppointmentItem |
Returns the AppointmentItem object that is the exception. Not valid for deleted appointments. Read-only. |
Class |
Returns an OlObjectClass constant indicating the object's class. Read-only. |
Deleted |
Returns Boolean (bool in C#) that is True if the AppointmentItem was deleted from the recurring pattern. Read-only |
ItemProperties |
This object, member, or enumeration is deprecated and is not intended to be used in your code. |
OriginalDate |
Returns a DateTime indicating the original date and time of an AppointmentItem before it was altered. This property will return the original date even if the AppointmentItem has been deleted. However, it will not return the original time if deletion has occurred. Read-only. |
Parent |
Returns the parent Object of the specified object. Read-only. |
Session |
Returns the NameSpace object for the current session. Read-only. |