AppointmentMapping.RecurrenceInfo Property
Gets or sets the data field to which an appointment's Appointment.RecurrenceInfo property is bound.
Namespace: DevExpress.Xpf.Scheduler
Assembly: DevExpress.Xpf.Scheduler.v14.2.dll
#Declaration
#Property Value
Type | Description |
---|---|
String | A String value that specifies the name of the bound data field. |
#Remarks
Use the RecurrenceInfo property to bind an appointment's Appointment.RecurrenceInfo property to a data field. The data field is taken from the datasource specified by the DataSource property of the AppointmentStorage.
Since the Appointment.RecurrenceInfo property is of the RecurrenceInfo type, binding it to a data field implies assigning appropriate values to the RecurrenceInfo object's specific properties (such as the RecurrenceInfo.AllDay, RecurrenceInfo.DayNumber, RecurrenceInfo.WeekOfMonth etc). These values are automatically taken from the bound data field (which should be of the memo type) by parsing the field's value based on its specific structure. The line below demonstrates a sample field value returned in the required notation.
<RecurrenceInfo AllDay="False" DayNumber="1" DayOfMonth="0" WeekDays="42" Id="51c81018-53fa-4d10-925f-2ed7f8408c75" Month="12" OccurenceCount="19" Periodicity="1" Range="2" Start="7/11/2005 7:00:00" End="8/24/2005 1:00:00" Type="1" />
Note that the RecurrenceInfo.ToXml and RecurrenceInfo.FromXml methods can be used to correctly save and load the recurrence information using xml format.
#Examples
This example demonstrates how to specify standard mappings for appointment properties via the AppointmentStorage.Mappings property.