Determines the string that displays on month view title.
Namespace:
C1.Web.UI.Controls.C1CalendarAssembly: C1.Web.UI.Controls.2 (in C1.Web.UI.Controls.2.dll)
Syntax
C# |
---|
[DefaultValueAttribute("{0:MMMM yyyy}")] [NotifyParentPropertyAttribute(true)] [JsonAttribute(true, true, "")] [TypeConverterAttribute("C1.Web.UI.Design.MonthViewTitleConverter, C1.Web.UI.Design.2")] [C1CategoryAttribute("Category.Appearance")] public string MonthViewTitle { get; set; } |
Visual Basic |
---|
<DefaultValueAttribute("{0:MMMM yyyy}")> _ <NotifyParentPropertyAttribute(True)> _ <JsonAttribute(True, True, "")> _ <TypeConverterAttribute("C1.Web.UI.Design.MonthViewTitleConverter, C1.Web.UI.Design.2")> _ <C1CategoryAttribute("Category.Appearance")> _ Public Property MonthViewTitle As String Get Set |
Remarks
MonthViewTitle is the tile display on each month view. To change the top most group title shared by month views, you have to use
CalendarTitle property.
The title string can be any string or string that has date formatting parameters.
At most four parameters are accepted, each can has its own data format. They are:
{0} - The value of DiaplayDate.
{1} - The first month of month views, when multiple monthes are displayed.
{2} - The last month of month views, when multiple monthes are displayed.
{3} - The number of month views, when multiple monthes are displayed.
For example:
"Schedule of {0:MMMM yyyy}".
"{1:MMMM yyyy} to {2:MMMM yyyy}"