Skip to main content

RecurrenceInfo.Type Property

Gets or sets the time base for the frequency of the corresponding appointment recurrences.

Namespace: DevExpress.XtraScheduler

Assembly: DevExpress.XtraScheduler.v14.2.Core.dll

#Declaration

public RecurrenceType Type { get; set; }

#Property Value

Type Description
RecurrenceType

A RecurrenceType enumeration member that specifies the recurrence's frequency type.

#Remarks

The Type property specifies the basis for the corresponding appointment's recurrence pattern used to calculate the appointment's recurrence. There are six types of recurrence available: minutely, hourly, daily, weekly, monthly, yearly. The RecurrenceType enumeration lists all of them. The frequency applied to the time base specified by the Type property can be set via the RecurrenceInfo.Periodicity property.

The images in the following table demonstrate the ways in which the Type property can be assigned to the recurrence pattern in the Appointment Recurrence dialog.

Type = RecurrenceType.Daily

RecurrenceInfo_Type_Daily

Type = RecurrenceType.Weekly

RecurrenceInfo_Type_Weekly

Type = RecurrenceType.Monthly

RecurrenceInfo_Type_Monthly

Type = RecurrenceType.Yearly

RecurrenceInfo_Type_Yearly

See Also