The MeetingItem object represents a meeting in a folder.
Specified in type library: | CDO.DLL |
First available in: | CDO Library version 1.2 |
Parent objects: | Messages collection |
Child objects: | Attachments collection Fields collection Recipients collection |
Default property: | Subject |
The MeetingItem object is a subclass of the Message object and exposes all the same properties and methods. In the following tables of properties and methods, those that are common with the Message object are linked to their descriptions for the Message object. Only the properties and methods unique to the MeetingItem object are described in this section.
Name |
Available since version | Type |
Access |
---|---|---|---|
Application | 1.2 | String | Read-only |
Attachments | 1.2 | Attachment object or Attachments collection object | Read-only |
Categories | 1.2 | String array | Read/write |
Class | 1.2 | Long | Read-only |
Conversation | 1.2 | (Obsolete. Do not use.) | Read/write |
ConversationIndex | 1.2 | String | Read/write |
ConversationTopic | 1.2 | String | Read/write |
DeliveryReceipt | 1.2 | Boolean | Read/write |
Encrypted | 1.2 | Boolean | Read/write |
Fields | 1.2 | Field object or Fields collection object | Read-only |
FolderID | 1.2 | String | Read-only |
ID | 1.2 | String | Read-only |
Importance | 1.2 | Long | Read/write |
MAPIOBJECT | 1.2 | IUnknown object | Read/write (Note: Not available to Visual Basic applications) |
MeetingType | 1.2 | Long | Read-only |
Parent | 1.2 | Messages collection object | Read-only |
ReadReceipt | 1.2 | Boolean | Read/write |
Recipients | 1.2 | Recipients object or Recipients collection object | Read/write |
Sender | 1.2 | AddressEntry object | Read/write |
Sensitivity | 1.2 | Long | Read/write |
Sent | 1.2 | Boolean | Read/write |
Session | 1.2 | Session object | Read-only |
Signed | 1.2 | Boolean | Read/write |
Size | 1.2 | Long | Read-only |
StoreID | 1.2 | String | Read-only |
Subject | 1.2 | String | Read/write |
Submitted | 1.2 | Boolean | Read/write |
Text | 1.2 | String | Read/write |
TimeCreated | 1.2 | Variant (vbDate format) | Read-only |
TimeExpired | 1.2 | Variant (vbDate format) | Read/write |
TimeLastModified | 1.2 | Variant (vbDate format) | Read-only |
TimeReceived | 1.2 | Variant (vbDate format) | Read/write |
TimeSent | 1.2 | Variant (vbDate format) | Read/write |
Type | 1.2 | String | Read/write |
Unread | 1.2 | Boolean | Read/write |
Name |
Available since version | Parameters |
---|---|---|
CopyTo | 1.2 | folderID as String, (optional) storeID as String |
Delete | 1.2 | (none) |
Forward | 1.2 | (none) |
GetAssociatedAppointment | 1.2 | (none) |
IsSameAs | 1.2 | objMessage2 as Object |
MoveTo | 1.2 | folderID as String, (optional) storeID as String |
Options | 1.2 | (optional) parentWindow as Long |
Reply | 1.2 | (none) |
ReplyAll | 1.2 | (none) |
Respond | 1.2 | RespondType as Long |
Send | 1.2 | (optional) saveCopy as Boolean, (optional) showDialog as Boolean, (optional) parentWindow as Long |
Update | 1.2 | (optional) makePermanent as Boolean, (optional) refreshObject as Boolean |
A MeetingItem object is distinguished from a Message object by its Type property containing IPM.Schedule.Meeting.Request.
New MeetingItem objects are created automatically by CDO when appointments are made into meetings. You can cause an AppointmentItem object to become a meeting by setting its MeetingStatus property to CdoMeeting and sending it to one or more recipients. To do this, create a Recipients collection using the appointment's Recipients property, populate the collection using its Add method, and call the appointment's Send method. CDO instantiates a MeetingItem object at the time you call Send. You cannot create a MeetingItem object directly.
When you turn an appointment into a meeting, you are identified as the initiating user in the appointment's Organizer property. If your calendar folder is in Microsoft® Outlook™, you also appear as one of the meeting's recipients.
A meeting item can be obtained from its parent Messages collection using the collection's Item property. To get to the Messages collection in a folder, use the Folder object's Messages property. If you know a meeting's unique identifier, you can obtain it directly from the Session object's GetMessage method.
A MeetingItem object becomes a member of the Inbox Messages collection of each recipient to which the original AppointmentItem object was sent. You can treat it programmatically like the Message objects in the collection. In particular, you can apply a MessageFilter object to the collection and filter meeting items on any properties, including the inherited Message object properties.
A recipient wishing to modify appointment information can call the MeetingItem object's GetAssociatedAppointment method to obtain an AppointmentItem object associated with the meeting request. This AppointmentItem is not the same object as the original AppointmentItem belonging to the meeting's organizer. It has the same property settings when it is first instantiated, but the recipient can change them as desired to make it different from the original. This AppointmentItem object is saved in the recipient's active calendar folder when its Update method is called.
To accept a meeting request, a recipient calls the MeetingItem object's Respond method with the RespondType parameter set to CdoResponseAccepted. Respond returns another MeetingItem object with the MeetingType property set to CdoMeetingResponse, which the recipient can Send back to the organizer. Calling Respond with either CdoResponseAccepted or CdoResponseTentative causes an associated AppointmentItem object to be created and saved in the recipient's active calendar folder.
To decline the meeting request, a recipient calls Respond with RespondType set to CdoResponseDeclined. No AppointmentItem object is created in the recipient's calendar folder in this case. However, any existing AppointmentItem object is left undeleted in the folder. An associated AppointmentItem object could be in the folder because of a previous response with CdoResponseAccepted, or because the recipient called GetAssociatedAppointment on the meeting request.
A MeetingItem object can be rendered into HTML hypertext using the CDO Rendering ObjectRenderer object. To specify this, set the object renderer's DataSource property to the MeetingItem object itself. The individual properties that can be rendered with the RenderProperty method are indicated in the MeetingItem and Message object property descriptions.
A MeetingItem object can also be rendered as the parent of a Recipients collection, using the ContainerRenderer object. The individual properties that can be rendered with the RenderProperty method are indicated in the MeetingItem and Message object property descriptions.