Enabling and Disabling Schedule Editor

The Editor can be disabled or enabled using the property AllowEditing and its default value is True.

<Schedule:SfSchedule AllowEditing="False" />
SfSchedule schedule = new SfSchedule();

               schedule.EnableTouch = true;

              schedule.AllowEditing = false;

              this.grid.Children.Add(schedule);