OlRecurrenceType

Send Feedback

The OlRecurrenceType enumeration identifies the type of recurrence pattern assigned to an appointment.

Syntax

enum OlRecurrenceType {
  olRecursOnce     = -1,
  olRecursDaily    = 0,
  olRecursWeekly   = 1,
  olRecursMonthly  = 2,
  olRecursMonthNth = 3,
  olRecursYearly   = 5,
  olRecursYearNth  = 6,
};

Elements

  • olRecursOnce
    The appointment occurs only once.
  • olRecursDaily
    The appointment recurs daily.
  • olRecursWeekly
    The appointment recurs weekly.
  • olRecursMonthly
    The appointment recurs monthly.
  • olRecursMonthNth
    The appointment recurs every nth month.
  • olRecursYearly
    The appointment recurs yearly.
  • olRecursYearNth
    The appointment recurs every nth year.

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

How to: Create a Recurring Appointment | 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.