Version

Recurrence Property

Returns or sets a string which describes the recurrence pattern for this activity, or null if this activity is not a root activity.
Syntax
public string Recurrence {get; set;}
Remarks

Assigning a value to this property causes the activity to assume the role of a template, i.e., it is used to define the properties of individual occurrences. This activity instance no longer appears in activity queries such as Infragistics.Scheduler.DataSource.ScheduleDataSource.GetAppointmentsInRange, but rather the occurrences it generates are displayed instead.

To make an activity a recurrence root, create an instance of the DateRecurrence class, set property values to customize the recurrence pattern, and call the DateRecurrence.ToICalendarString method to serialize the recurrence information to a string. The resulting string can then be directly assigned to this property.

Requirements

Target Platforms: Android 4.4+, iOS 8+

Development Environments: Visual Studio 2015+, Visual Studio for Mac Preview, Xamarin for Visual Studio 4.2+

See Also