Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxRecurrenceValidStatus Enum

Enumerates the available states of the recurrence data.

#Declaration

Delphi
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