OlBusyStatus

Send Feedback

The OlBusyStatus enumeration identifies a recipient's availability status for an appointment.

Syntax

enum OlBusyStatus {
  olFree        = 0,
  olTentative   = 1,
  olBusy        = 2,
  olOutOfOffice = 3,
};

Elements

  • olFree
    The recipient's time-slot is free for scheduling. There will not be a scheduling conflict if the recipient accepts a meeting request that occurs during this time-slot.
  • olTentative
    The recipient's time-slot is tentative for scheduling. There might not be a scheduling conflict if the recipient accepts a meeting request that occurs during this time-slot. The recipient has tentatively accepted another meeting request which occurs during the same time-slot.
  • olBusy
    The recipient's time-slot is not free for scheduling. There will be a scheduling conflict if the recipient accepts a meeting request that occurs during this time-slot. The recipient has already accepted another meeting request which occurs during the same time-slot.
  • olOutOfOffice
    The recipient's time-slot is not free for scheduling. There will be a scheduling conflict if the recipient accepts a meeting request that occurs during this time-slot. The recipient is out of the office during this time-slot, and is therefore unavailable to attend meetings.

Remarks

In POOM, you do not set the MeetingStatus property to indicate a meeting. The MeetingStatus property is read-only and can take only the OlMeetingStatus enumeration values olNonMeeting and olMeeting. Outlook Mobile automatically sets MeetingStatus for any appointment with recipients to the value olMeeting.

Requirements

Pocket PC: Pocket PC 2000 and later
Smartphone: Smartphone 2002 and later
OS Versions: Windows CE 3.0 and later
Header: pimstore.h
Library: pimstore.lib

See Also

IAppointment::get_MeetingStatus | Pocket Outlook Object Model API Interfaces | Pocket Outlook Object Model API Enumerations

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.