This component renders the current date with the format decided in the project settings. The language used is also decided from the project settings and can be overridden by individual documents.
Properties
|
Name |
Type |
Description |
| Date Style |
Style |
The style used to display the date. |
| Date Format |
Enum |
Render mode for the date. Possible values:
- Long Date
- Short Date
- Custom
The Long and Short Date are the ones chosen from the info tab of the Project Properties Dialog. The custom formatting is done as follows (example within parentheses):
%Y Full Year(2003)
%y Short Year(03)
%m Month(12)
%D Day(01)
%d Day(1)
%H Hour(12)
%M Minute(59)
%S Second(59)
%A Weekday (Monday)
%a Short Weekday (Mon)
%B Month (January)
%b Short Month (Jan)
|
| Custom Format String |
String |
The format string used for the Custom Date Format. |