MeetingItem Interface
Represents a change to the recipient's Calendar folder initiated by another party or as a result of a group action.
Namespace: Microsoft.Office.Interop.Outlook
Assembly: Microsoft.Office.Interop.Outlook (in Microsoft.Office.Interop.Outlook.dll)
Syntax
'Declaration
<CoClassAttribute(GetType(MeetingItemClass))> _
<GuidAttribute("00063062-0000-0000-C000-000000000046")> _
Public Interface MeetingItem _
Inherits _MeetingItem, ItemEvents_10_Event
'Usage
Dim instance As MeetingItem
[CoClassAttribute(typeof(MeetingItemClass))]
[GuidAttribute("00063062-0000-0000-C000-000000000046")]
public interface MeetingItem : _MeetingItem,
ItemEvents_10_Event
Remarks
This is a .NET interface derived from a COM coclass that is required by managed code for interoperability with the corresponding COM object. Use this derived interface to access all method, property, and event members of the COM object. However, if a method or event you want to use shares the same name under the same COM object, cast to the corresponding primary interface to call the method, and cast to the latest events interface to connect to the event. Refer to this topic for information about the COM object. For information about the method and property members of the COM object, see _MeetingItem. For information about the event members of the COM object, see ItemEvents_10_Event.
Unlike other Microsoft Outlook objects, you cannot create this object. It is created automatically when you set the MeetingStatus property of an AppointmentItem object to olMeeting and send it to one or more users. They receive it in their inboxes as a MeetingItem.
Use the GetAssociatedAppointment method to return the AppointmentItem object associated with a MeetingItem object, and work directly with the AppointmentItem object to respond to the request.
See Also
Reference
Microsoft.Office.Interop.Outlook Namespace
Other Resources
How to: Find the Appointment Item Associated with a Meeting Request