1. Computing
Glossary|Tips/Tricks|FREE App/VCL|Best'O'Net|Books|Link Back

Delphi Programming RTL Reference|By Category|Alphabetically|By Unit
 

TimeOf

unit
DateUtils
category
date/time routines

declaration
function TimeOf(Date: TDateTime) : TDateTime

description
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.

example
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

in real code

see also
DateOf EncodeDate DecodeTime


 Free Delphi code snippet inside every Delphi Newsletter!
Subscribe to the Newsletter
Name
Email

 Got some code to share? Got a question? Need some help?

©2013 About.com. All rights reserved.