Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
4/8/2010

The OlMeetingStatusFlagsenumeration identifies the meeting status of an Appointmentitem using a series of flag constants. These values can be combined using the logical ORto create a bitmask.

Syntax

enum OlMeetingStatusFlags {
	olMeetingFlag   = 1,
	olReceivedFlag  = 2,
	olCanceledFlag  = 4,
	olForwardedFlag = 8
};

Elements

olMeetingFlag

The Appointment item is actually a Meeting, and has a list of scheduled attendees.

olReceivedFlag

The meeting request has been received and accepted by at least one of the recipients.

olCanceledFlag

The meeting owner has canceled the meeting.

olForwardedFlag

The meeting request was forwarded by another attendee, on behalf of the meeting owner.

Remarks

To maintain parity with Microsoft Exchange and Outlook, Outlook Mobile meeting status constants are represented as a series of flag constants rather than enumerated values (as there had been prior to the release of Windows Mobile 6.5). This update brings Outlook Mobile inline with Microsoft Exchange and desktop Outlook.

Requirements

Header pimstore.h
Library Pimstore.lib
Windows Mobile Windows Mobile 6 Classic and later, Windows Mobile 6 Professional and later, Windows Mobile 6 Standard and later

External Resources

For information on how Microsoft Exchange and Outlook handle meeting status, see OL: The "MeetingStatus" Value of Canceled Appointments .

See Also