Version

Hiding Header and Footer of WebMonthCalendar

WebMonthCalendar™ allows you to hide the header and footer from displaying to the end-user. The header portion of WebMonthCalendar contains two buttons on the left and right sides which allow navigation to next and previous months as well as labels with the month and the year. The footer portion of WebMonthCalendar contains today’s date. You can hide the header and footer by simply setting the control’s ShowHeader and ShowFooter properties to false.

You can set the ShowHeader and ShowFooter properties either by using the Microsoft® Visual Studio® Property Window or by using the following code:

In Visual Basic:

WebMonthCalendar1.ShowFooter = false
WebMonthCalendar1.ShowHeader = false

In C#:

WebMonthCalendar1.ShowFooter = false;
WebMonthCalendar1.ShowHeader = false;
WebMonthCalendar Hiding Header and Footer of WebMonthCalenadar 01.png
WebMonthCalendar Hiding Header and Footer of WebMonthCalenadar 02.png