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