KaxCalendarTitleFormat Property |
Gets or sets the format string that is applied to the calendar title.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic string TitleFormat { get; set; }
Public Property TitleFormat As String
Get
Set
public:
property String^ TitleFormat {
String^ get ();
void set (String^ value);
}
member TitleFormat : string with get, set
Property Value
Type:
String
RemarksThe 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.
See Also