Hrs2Secs Function |
Unit
QESBPCSDateTime
Declaration
Function Hrs2Secs(const Value: Extended): Extended;
Parameters |
Value | Number of Hours |
Returns
the Number of Seconds
Category
Date/Time Conversion RoutinesImplementation
function Hrs2Secs (const Value: Extended): Extended; begin Result := Value * SecsPerHr; End; |
|