EncodeDateDay
Encodes a year and day of year to a TDateTime value
Declaration
Source position: dateutil.inc line 322
function EncodeDateDay(const AYear: Word; const ADayOfYear: Word)
: TDateTime;
Description
EncodeDateDay encodes the values AYear and ADayOfYear to a date value and returns this value.
For an example, see DecodeDateDay .
Errors
If any of the arguments is not valid, then an EConvertError exception is raised.
See also
Name | Description |
---|---|
DecodeDateDay | Decode a TDateTime value in year and year of day. |
EncodeDateMonthWeek | Encodes a year, month, week of month and day of week to a TDateTime value |
EncodeDateTime | Encodes a TDateTime value from all its parts |
EncodeDateWeek | Encode a TDateTime value from a year, week and day of week triplet |
TryEncodeDateMonthWeek | Encode a year, month, week of month and day of week to a TDateTime value |
TryEncodeDateTime | Encode a Year, Month, Day, Hour, minute, seconds, milliseconds tuplet to a TDateTime value |
TryEncodeDateWeek | Encode a year, week and day of week triplet to a TDateTime value |