OlMeetingStatus

A version of this page is also available for

Windows Embedded CE 6.0 R3

4/8/2010

The OlMeetingStatus enumeration identifies the function of an Appointment item. An Appointment item that has a Recipient List (a list of attendees) functions as a Meeting Request, and Meeting Requests can be Accepted and Cancelled.

Syntax

enum OlMeetingStatus {
    olNonMeeting      = 0,
    olMeeting         = 1,
    olMeetingAccepted = 3,
    olMeetingCanceled = 7
};

Elements

  • olNonMeeting
    The Appointment item is not a Meeting, it is an regular appointment. The user is the only attendee.
  • olMeeting
    The Appointment item is actually a Meeting, and has a list of scheduled attendees.
  • olMeetingAccepted
    The meeting request has been received and accepted by at least one of the recipients.
  • olMeetingCanceled
    The meeting owner has canceled the meeting.

Remarks

Beginning with Windows Mobile 6.5, the values of olMeeting, olMeetingAccepted, and olMeetingCanceled, are expressed as values from the OlMeetingStatusFlags enumeration. This update brings Outlook Mobile inline with Microsoft Exchange and desktop Outlook.

Syntax

enum OlMeetingStatus {
  olNonMeeting      = 0,
  olMeeting         = olMeetingFlag,
  olMeetingAccepted = olMeetingFlag | olReceivedFlag,
  olMeetingCanceled = olMeetingFlag | olReceivedFlag | olCanceledFlag
};

Requirements

Header pimstore.h
Library Pimstore.lib
Windows Embedded CE Windows CE 3.0 and later
Windows Mobile Pocket PC 2000 and later, Smartphone 2002 and later

External Resources

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

See Also

Reference

IAppointment
IAppointment::get_MeetingStatus
OlBusyStatus

Other Resources

Pocket Outlook Object Model Enumerations