ValueOriginType Enumeration
Defines the origin of value in context of a calculation.
This enum allows quick understanding of the flow of the calculation.
NaN | 0 | Represents default state when origin is not determinated or set. |
Parameter | 1 | Represents input parameter of the calculation. |
Constant | 2 | Represents a constant values which do not change. |
Evaluation | 3 | Represents a value that is a result of lambda expression evaluation result. |
Operation | 4 | Represents intermediate results of basic binary or unary operations. |
Result | 5 | Represent the final result value when used in classes inherting from EcaluationScope. |