ConversionOperationEnum Enumeration
Enumeration of the available range of operations available while
converting.
Namespace: ConversionCalcAssembly: ConversionCalc (in ConversionCalc.dll) Version: 25.1109.1402+460980fe794ed921231d4cff278ac7c37ae486a2
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)).
|