DateUtils.RecodeDay
From RAD Studio VCL Reference
Contents |
Delphi Information
From DateUtils.pas
function RecodeDay(const AValue: TDateTime; const ADay: Word): TDateTime;
Unit: DateUtils
Type: function
Visibility: public
C++ Information
From DateUtils.hpp
System::TDateTime __fastcall RecodeDay(System::TDateTime AValue, unsigned short ADay);
Unit: DateUtils
Type: function
Description
Replaces the day of the month for a specified TDateTime value.
Call RecodeDay to convert the date/time value specified by AValue with the value obtained by changing the day of the month to ADay. Legal values for ADay depend on the month represented by AValue. (For example, if AValue is in January, ADay can range from 1 through 31, if AValue is in February, ADay can range from 1 through 28 or 1 to 29, depending on the year, and so on.)
If the value provided for ADay does not represent a valid day in the month identified by AValue, RecodeDay raises an EConvertError exception.
See Also
Code Samples