Years2Days Function
Returns the number of Days the specified number of Years represents.

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 Routines

Implementation

function Years2Days (const Value: Extended): Extended;
begin
     Result := Value * DaysPerTropicalYear;
End;


HTML generated by Time2HELP
http://www.time2help.com