How to remove the time from schedule appointment in WinForms ScheduleControl?
Remove the time for month and week view
By default,
the appointments will be displayed with subject and the scheduled time. In
order to remove the time in Month and Week view of schedule appointments
in WinForms ScheduleControl, the ScheduleApperance.WeekMonthItemFormat property
can be used and to remove the time in WorkWeek and Day view, the ScheduleApperance.DayItemFormat property
of ScheduleControl can be used.
C#
//To remove the time for Month and Week view
this.scheduleControl1.Appearance.WeekMonthItemFormat = "[subject]";
//To remove the time for WorkWeek and day view
this.scheduleControl1.Appearance.DayItemFormat = "[subject]";
'To remove the time for Month and Week view
Me.scheduleControl1.Appearance.WeekMonthItemFormat = "[subject]"
'To remove the time for WorkWeek and day view
Me.scheduleControl1.Appearance.DayItemFormat = "[subject]"
Sample Links:
C#: ScheduleGrid_CS
VB: ScheduleGrid_VB
Conclusion
I hope you enjoyed learning about how to remove the
time from schedule appointment in ScheduleControl.
You can refer to our WinForms ScheduleControl feature tour page to know about its other groundbreaking feature representations. You can also explore our WinForms ScheduleControl documentation to understand how to present and manipulate data.
For current customers, you can check out our WinForms components from the License and Downloads page. If you are new to Syncfusion, you can try our 30-day free trial to check out our WinForms Schedule Control and other WinForms components.
If you have any queries or require clarifications, please let us know in comments below. You can also contact us through our support forums, Direct-Trac, or feedback portal. We are always happy to assist you!