[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
Returns the current time.
Source position: datih.inc line 129
function Time: TDateTime; |
Time returns the current time in TDateTime format. The date part of the TDateTimeValue is set to zero.
None.
|
Returns the current date and time. |
|
|
Return the current date. |
Program Example23; { This program demonstrates the Time function } Uses sysutils; Begin Writeln ('The time is : ',TimeToStr(Time)); End.