| [Overview][Constants][Procedures and functions][Index] | 
Extract the time part from a TDateTime indication.
Source position: dateutil.inc line 90
function TimeOf(  | 
const AValue: TDateTime  | 
):TDateTime;  | 
AValue  | 
  | 
TDateTime to extract time from  | 
Time part of AValue.
TimeOf extracts the time part from AValue and returns the result.
Since the TDateTime is actually a double with the time part encoded in the fractional part, this operation corresponds to a call to Frac.
  | 
Extract the date 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 Example2; { This program demonstrates the TimeOf function } Uses SysUtils,DateUtils; Begin Writeln('Time is : ',TimeToStr(TimeOf(Now))); End.