Difference between revisions of "CalendarView.WeekHeaderTextFormat"
From Jeremie Leroy - XOJO Controls Wiki
m (1 revision) |
m (101 revisions imported) |
||
(44 intermediate revisions by 2 users not shown) | |||
Line 7: | Line 7: | ||
| readonly=no | | readonly=no | ||
| newinversion=1.1.0 | | newinversion=1.1.0 | ||
− | | version=1. | + | | version=1.4.1 |
}} | }} | ||
Line 19: | Line 19: | ||
<source> | <source> | ||
//Tuesday 08, February | //Tuesday 08, February | ||
− | me | + | me.WeekHeaderTextFormat = "l d, F" |
//Feb. 8 | //Feb. 8 | ||
me.WeekHeaderTextFormat = "M. j" | me.WeekHeaderTextFormat = "M. j" | ||
</source> | </source> |
Latest revision as of 14:21, 6 August 2015
Property (As String)
Date format to display over each day in Week and Day view. This string property takes the same format parameters as the PHP Date function: http://php.net/manual/en/function.date.php If a character needs to be escaped, a backslash "\" can be used.
Examples
Invalid language.
You need to specify a language like this: <source lang="html4strict">...</source>
Supported languages for syntax highlighting:
[Expand]
//Tuesday 08, February me.WeekHeaderTextFormat = "l d, F" //Feb. 8 me.WeekHeaderTextFormat = "M. j"