Delphi Programming RTL Reference|By Category|Alphabetically|By Unit
function TimeOf(Date: TDateTime) : TDateTime
Returns only the Time portion of the TDateTime value, by setting Date part to 0.
TimeOf sets the time portion to 0, which means 12/30/1899.
var ThisMoment, ThisTime : TDateTime;
ThisMoment := Now; // -> 06/29/2003 10:29:16:138
ThisTime := TimeOf(ThisMoment);
//This Day:= 12/30/1899 10:29:16:138
|
DateOf
EncodeDate
DecodeTime
|
Free Delphi code snippet inside every Delphi Newsletter! |
|
|
|
Got some code to share? Got a question? Need some help? |
|
|