Enum CalcActions
Enumerates all the actions that could be assigned to a calculator button including the digits and all arithmetic operators.
Namespace: Syncfusion.Windows.Forms.Tools
Assembly: Syncfusion.Tools.Windows.dll
Syntax
public enum CalcActions
Fields
| Name | Description |
|---|---|
| CalcDigit0 | The digit 0. |
| CalcDigit1 | The digit 1. |
| CalcDigit2 | The digit 2. |
| CalcDigit3 | The digit 3. |
| CalcDigit4 | The digit 4. |
| CalcDigit5 | The digit 5. |
| CalcDigit6 | The digit 6. |
| CalcDigit7 | The digit 7. |
| CalcDigit8 | The digit 8. |
| CalcDigit9 | The digit 9. |
| CalcOperatorDivide | The / division operator. |
| CalcOperatorEquals | The = equal to operator. |
| CalcOperatorMemoryClear | The MC memory clear operator. |
| CalcOperatorMemoryPlus | The M+ memory plus operator. |
| CalcOperatorMemoryRecall | The MR memory recall operator. |
| CalcOperatorMemoryStore | The MS memory store operator. |
| CalcOperatorMinus | The - subtraction operator. |
| CalcOperatorMultiply | The * multiplication operator. |
| CalcOperatorNone | Dummy operator. |
| CalcOperatorPercent | The % percent operator. |
| CalcOperatorPlus | The + addition operator. |
| CalcOperatorReciprocal | The reciprocal operator. |
| CalcOperatorSign | The +/- sign operator. |
| CalcOperatorSqrt | The sqrt operator. |
| CalcSpecialBackspace | The backspace operator. |
| CalcSpecialClear | The C Clear operator. |
| CalcSpecialClearEntry | The CE Clear Entry operator. |
| CalcSpecialDecimal | The . Decimal operator. |