Extract the date part from a TDateTime indication.
Source position: dateutil.inc line 96
| function DateOf( | 
| const AValue: TDateTime | 
| ):TDateTime; | 
| AValue | 
 | TDateTime with the date extracted in the routine. | 
Date part of AValue.
DateOf extracts the date part from AValue and returns the result.
Since the TDateTime is actually a double with the date part encoded in the integer part, this operation corresponds to a call to Int.
| 
 | Extract the time part from a TDateTime indication. | |
| 
 | Extract the year from a given date. | |
| 
 | Extract the month from a given date. | |
| 
 | Extract the day (of month) part from a TDateTime value. | |
| 
 | Extract the hour part from a TDateTime value. | |
| 
 | Extract the minute part from a TDateTime value. | |
| 
 | Extract the second part from a TDateTime value. | |
| 
 | Extract the millisecond part from a TDateTime value. | 
Program Example1; { This program demonstrates the DateOf function } Uses SysUtils,DateUtils; Begin Writeln('Date is: ',DateTimeToStr(DateOf(Now))); End.