System.Math.TPaymentTime
Delphi
TPaymentTime = (ptEndOfPeriod, ptStartOfPeriod);
C++
enum DECLSPEC_DENUM TPaymentTime : unsigned char { ptEndOfPeriod, ptStartOfPeriod };
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
enum | public | System.Math.pas System.Math.hpp |
System.Math | System.Math |
Description
TPaymentTime is an enumerated type used as a parameter in financial functions.
TPaymentTime indicates when interest is calculated. The following table lists the possible values:
Value | Meaning |
---|---|
ptStartOfPeriod |
Interest is calculated on the principle balance at the beginning of the payment period |
ptEndOfPeriod |
Interest is calculated at the end of the payment period |