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