Category / Section
How to set the start day in a week in NavigationCalendar in WinForms ScheduleControl?
1 min read
Set the start day in a week
In order to start a week with a particular day in NavigationCalendar, you can use NavigationCalendarStartDayOfWeek. This property gets or sets the DayOfWeek that is shown in the left-most column of the calendar.
C#
//to set the start day of the week
//Form1()
this.scheduleControl1.Appearance.NavigationCalendarStartDayOfWeek = DayOfWeek.Tuesday;
VB
'to set the start day of the week
‘Form1()
Me.scheduleControl1.Appearance.NavigationCalendarStartDayOfWeek = DayOfWeek.Tuesday
Screenshot
Samples:
Didn't find an answer?
Contact Support