Months2Days Function
Returns the number of Days the specified number of Months represents.

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 Routines

Implementation

function Months2Days (const Value: Extended): Extended;
begin
     Result := Value * DaysPerSynodicMonth;
End;


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