Back to Devexpress

TcxRecurrenceValidStatus Enum

vcl-cxschedulerrecurrence-152a2b5e.md

latest1.8 KB
Original Source

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:

ValueMeaning
rvsValidAll the recurrence’s details are valid.
rvsReplaceOccurrenceDateThe 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.
rvsInvalidPatternThe recurrence pattern is not valid. For example, the specified day is greater than the last day of any month.
rvsInvalidDurationThe 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

TcxSchedulerEventRecurrenceInfo.GetValidStatus

cxSchedulerRecurrence Unit