Months2Days Function |
Unit
QESBPCSDateTime
Declaration
Function Months2Days(const Value: Extended): Extended;
Description
Months are based on Synodic Months - see DaysPerSynodicMonth.
Parameters |
Value | Number of Months (Synodic) |
Returns
the Number of Days
Category
Date/Time Conversion RoutinesImplementation
function Months2Days (const Value: Extended): Extended; begin Result := Value * DaysPerSynodicMonth; End; |
|