Hi Mark,
Thank you for contacting Syncfusion support.
We have checked with the provided information. In SfSchedule, you can customize the drop time of the dragging appointment using DropTime property of AppointmentDropEventArgs in AppointmentDrop event. Kindly refer the below code snippet and sample below.
Code snippet:
|
schedule.AppointmentDrop += Schedule_AppointmentDrop;
…
private void Schedule_AppointmentDrop(object sender, AppointmentDropEventArgs e)
{
e.DropTime = new DateTime(e.DropTime.Year, e.DropTime.Month, e.DropTime.Day, e.DropTime.Hour, 30, 0);
} |
Please let us know if you need further assistance on this.
Regards,
Deivaselvan