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