RadCalendar for ASP.NET

RadCalendar Send comments on this topic.
TitleFormat Property
See Also 
Telerik.WebControls Namespace > RadCalendar Class : TitleFormat Property


Gets or sets the format string that is applied to the calendar title.   

 

Namespace: Telerik.WebControls
Assembly: RadCalendar (in RadCalendar.dll)

Syntax

Visual Basic (Declaration) 
Public Property TitleFormat As String
Visual Basic (Usage)Copy Code
Dim instance As RadCalendar
Dim value As String
 
instance.TitleFormat = value
 
value = instance.TitleFormat
C# 
public string TitleFormat {get; set;}

Remarks

The property should contain either a format specifier character or a custom format pattern. For more information, see the summary page for System.Globalization.DateTimeFormatInfo.

By default this property uses formatting string of 'MMMM yyyy'. Valid formats are all supported by the .NET Framework.

Example:

  • "d" is the standard short date pattern.
  • "d" returns the day of the month; "d" is a custom pattern.
  • "d " returns the day of the month followed by a white-space character; "d " is a custom pattern.

Requirements

Platforms: Windows 2000, Windows XP Professional, Windows Server 2003 family

See Also