OlMeetingStatusFlags (Compact 7)

3/12/2014

The OlMeetingStatusFlags enumeration identifies the meeting status of an IAppointment item using a series of flag constants.

These values can be combined using the logical OR to 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 Embedded Compact 7). This update brings Outlook Mobile inline with Microsoft Exchange and desktop Outlook.

Other Resources

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

Requirements

Header

pimstore.h

Library

Pimstore.lib

See Also

Reference

Pocket Outlook Object Model Enumerations
Pocket Outlook Object Model Interfaces
IAppointment::get_MeetingStatus
IAppointment
OlBusyStatus