Frequency
#include <bb/pim/calendar/Frequency>
To link against this class, add the following line to your .pro file: LIBS += -lbbpim
The Frequency class includes possible recurrence frequencies for calendar events.
This class provides values for the frequency attribute in the Recurrence class.
BlackBerry 10.0.0
Public Types Index
enum TypeUndefined = -1, Daily = 0, Weekly = 1, Monthly = 2, MonthlyAtWeekDay = 3, Yearly = 5, YearlyAtWeekDayOfMonth = 6 |
Public Types
An enumeration of possible recurrence frequencies.
BlackBerry 10.0.0
- Undefined = -1
Indicates an undefined frequency.
This is the default value.
Since:BlackBerry 10.0.0
- Daily = 0
Indicates that a recurring event occurs daily.
Since:BlackBerry 10.0.0
- Weekly = 1
Indicates that a recurring event occurs on a specific day of the week.
Since:BlackBerry 10.0.0
- Monthly = 2
Indicates that a recurring event occurs on a certain day of every month.
The day in the month is defined by Recurrence::dayInMonth().
Since:BlackBerry 10.0.0
- MonthlyAtWeekDay = 3
Indicates that a recurring event occurs every month on a certain day of a certain week.
The week in the month is defined by Recurrence::weekInMonth(). The day in the week is defined by Recurrence::dayInWeek().
Since:BlackBerry 10.0.0
- Yearly = 5
Indicates that a recurring event occurs every year, on a certain day of a month.
The day is defined by Recurrence::dayInMonth(). The month is defined by Recurrence::monthInYear().
Since:BlackBerry 10.0.0
- YearlyAtWeekDayOfMonth = 6
Indicates that a recurring event occurs every year, on a certain week day, week, and month.
The week day is defined by Recurrence::dayInWeek(). The week is defined by Recurrence::weekInMonth(). The month is defined by Recurrence::monthInYear().
Since:BlackBerry 10.0.0