ConversionOperationEnum Enumeration
Enumeration of the available range of operations available while
converting.
Namespace: ConversionCalcAssembly: ConversionCalc (in ConversionCalc.dll) Version: 25.3016.3818
public enum ConversionOperationEnum
Public Enumeration ConversionOperationEnum
No code example is currently available or this language may not be supported.
| None | 0 |
No operation defined or unknown.
|
| Add | 1 |
Add the value.
|
| Convert | 2 |
Perform a conversion on the value.
|
| Divide | 3 |
Divide by the value.
|
| Multiply | 4 |
Multiply by the value.
|
| Subtract | 5 |
Subtract the value.
|
| Reciprocal | 6 |
Get the reciprocal of the value (1/value).
|
| Square | 7 |
Get the square of the value (POW(value, 2)).
|
| SquareRoot | 8 |
Get the square root of the value (SQRT(value)).
|