#include <app/vrecur.h>
class CVersitRecurrenceMonthlyByDay : public CVersitRecurrence |
Public Attributes | |
---|---|
CArrayFix< TInt > * | iArrayOfOccurrencesInDaysFromEndOfMonth |
CArrayFix< TInt > * | iArrayOfOccurrencesInDaysFromStartOfMonth |
TBool | iLastDay |
Public Member Functions | |
---|---|
CVersitRecurrenceMonthlyByDay(TInt, TInt, TVersitDateTime *, CArrayFix< TInt > *, CArrayFix< TInt > *, TBool) | |
~CVersitRecurrenceMonthlyByDay() | |
virtual IMPORT_C void | ExternalizeOccurrenceListsL(RWriteStream &) |
Inherited Attributes | |
---|---|
CVersitRecurrence::iDuration | |
CVersitRecurrence::iEndDate | |
CVersitRecurrence::iInterval | |
CVersitRecurrence::iRepeatType |
Inherited Enumerations | |
---|---|
CVersitRecurrence:TType |
Defines a list of days when a 'monthly by day' recurrence is to repeat.
Used by a repeating event (a vCalendar event or to-do) to define when it is to occur.
The days on which the event occurs are identified by a number, counting either from the start or the end of the month.
A pointer to this object may be owned by a CParserPropertyValueRecurrence object.
Array of days, counting from the end of the month, on which the event occurs.
Array of days, counting from the start of the month, on which the event occurs.
IMPORT_C | CVersitRecurrenceMonthlyByDay | ( | TInt | aInterval, |
TInt | aDuration, | |||
TVersitDateTime * | aEndDate, | |||
CArrayFix< TInt > * | aArrayOfOccurrencesInDaysFromStartOfMonth, | |||
CArrayFix< TInt > * | aArrayOfOccurrencesInDaysFromEndOfMonth, | |||
TBool | aLastDay | |||
) |
Constructs the CVersitRecurrenceMonthlyByDay object.
Sets the repeat type to CVersitRecurrence::EMonthlyByDay. Note: if a duration and an end date are both specified, the end date takes precedence.
Parameter | Description |
---|---|
aInterval | The number of months between repeats. |
aDuration | The duration, in months, for which the event should recur. A value of zero indicates the repeat should continue forever. |
aEndDate | Optional pointer to the end date for the repeat event. The object takes ownership of this pointer. |
aArrayOfOccurrencesInDaysFromEndOfMonth | Optional pointer to an array of numbers, each of which can have a value between 1 and 31 inclusive, which identify the days, counting from the end of the month, on which the repeat event occurs. (The last day of the month is represented by 1). The object takes ownership of this pointer. |
aLastDay | Optional - ETrue if the event occurs on the last day of the month. This day can then be represented in the output stream using the LD recurrence value. EFalse if not. |
IMPORT_C | ~CVersitRecurrenceMonthlyByDay | ( | ) |
Frees all resources owned by the object, prior to its destruction.
IMPORT_C void | ExternalizeOccurrenceListsL | ( | RWriteStream & | aStream | ) | const [virtual] |
Reimplemented from CVersitRecurrence::ExternalizeOccurrenceListsL(RWriteStream &)const
Writes the days of the month on which the event occurs to the output stream, aStream.
For days counted from the beginning of the month, the string written to aStream might be "1+ 2+ 16+ 17+ ", with the plus sign indicating that the day is counted from the start of the month.
For days counted from the end of the month, the string written to aStream might be "1- 3- 4- LD ", with "LD" signifying that the event occurs on the last day of the month.
Parameter | Description |
---|---|
aStream | The stream to which the occurrence list is to be written. |