[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Internally used class for converting integer to currency
Source position: fpexprpars.pp line 409
type TIntToCurrencyNode = class(TIntConvertNode) |
||
public |
||
function NodeType; override; |
|
Get the result type for integer to currency conversion |
procedure GetNodeValue(); override; |
|
Convert integer value to currency |
end; |
|
Internally used class for converting integer to currency |
|
| | | ||
|
Internally used class for integer conversion operations |
|
| | | ||
|
Internally used class for type conversion operations |
|
| | | ||
|
Internally used class for unary operations with single operand |
|
| | | ||
|
Class for representing nodes in expression trees |
|
| | | ||
This conversion node class handles the automatic conversion of integer values to currency values in expressions. It extends the base conversion functionality to provide integer-to-currency specific conversion logic.
The class is used internally by the expression parser when type coercion is needed to make integer values compatible with currency operations. The conversion treats the integer as a currency amount with appropriate decimal precision.
This conversion is useful in financial calculations where integer values need to be combined with currency values while maintaining proper decimal precision and formatting.
|
Class for representing nodes in expression trees |