Hi Peregrino,
Thank you for your interest in Syncufsion products.
The start and end time of the appointments can be retrieved from your custom appointment when the FormClosing event is occurred. In that event, the values can be assigned to RecurrentAppointment instance to add it in the MasterList of ScheduleDataProvider. Please make use of the below code example.
Example code
|
recurringForm.Closing+= new recurringForm_Closing;
private void recurringForm_Closing(object sender, EventArgs e)
{
IRecurringAppointment item = scheduleDataProvider.NewAppointment();
Item.StartTime = value from the form.
Item.EndTime = value from the Form.
} |
Please let us know, if you have any other queries.
Arulpriya