Skip to main content

iCalendarHelper.ApplyRecurrenceRule(String, IRecurrenceInfo) Method

Applies recurrence rule to the specified RecurrenceInfo object.

Namespace: DevExpress.XtraScheduler.iCalendar

Assembly: DevExpress.XtraScheduler.v23.2.Core.Desktop.dll

NuGet Package: DevExpress.Scheduler.CoreDesktop

Declaration

public static void ApplyRecurrenceRule(
    string recurrenceRule,
    IRecurrenceInfo recurrenceInfo
)

Parameters

Name Type Description
recurrenceRule String

A string that is the recurrence rule defined in RFC 2445 (RRULE in iCalendar format).

recurrenceInfo IRecurrenceInfo

An object that expose the IRecurrenceInfo interface - the RecurrenceInfo object that contains appointment recurring information.

Remarks

Use the iCalendarHelper.ExtractRecurrenceRule method to obtain a recurrence rule string (the RRULE property in iCalendar format); use the iCalendarHelper.ApplyRecurrenceRule to apply a new recurrence rule specified in iCalendar format to the RecurrenceInfo object.

See Also