Skip to main content

TcxRecurrenceValidStatus Enum

Enumerates the available states of the recurrence data.

Declaration

TcxRecurrenceValidStatus = (
    rvsValid,
    rvsReplaceOccurrenceDate,
    rvsInvalidPattern,
    rvsInvalidDuration
);

Members

Name
rvsValid
rvsReplaceOccurrenceDate
rvsInvalidPattern
rvsInvalidDuration

Remarks

Values include:

Value Meaning
rvsValid All the recurrence’s details are valid.
rvsReplaceOccurrenceDate The date specified as the day in a month for the event/holiday to reoccur on is valid, but for some months it’s greater than the last day of the month. In these cases the occurrence will fall on the last day of the month.
rvsInvalidPattern The recurrence pattern is not valid. For example, the specified day is greater than the last day of any month.
rvsInvalidDuration The range of the recurrence is not valid. For example, the recurrence frequency is shorter than the user event‘s duration (see also the TcxSchedulerEvent.Start, TcxSchedulerEvent.Finish, and TcxSchedulerCustomRecurrenceInfo.Recurrence properties).
See Also