StartTime represents the starting time of the clock
EndTime represents the time of the last clock item
Example : Set time to RadTimePicker code behind
RadTimePicker1.SelectedDate = DateTime.ParseExact("12:00", RadTimePicker1.TimeView.TimeFormat, null); // set default time RadTimePicker1.TimeView.StartTime = new TimeSpan(8, 60, 0); //start time RadTimePicker1.TimeView.EndTime = new TimeSpan(17,60, 0); // end time |