Specifies the number of seconds in a day.
SecsPerDay = MinsPerDay * SecsPerMin;
SecsPerDay = MinsPerDay * SecsPerMin;
SysUtils
SecsPerDay is the number of seconds (86,400) in a day. It is the product of MinsPerDay and SecsPerMin.
Using this constant rather than hard coding 86400 makes for more readable code.
Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
|
What do you think about this topic? Send feedback!
|