'Declaration Public Enum CalculatorOperation Inherits System.Enum
'Usage Dim instance As CalculatorOperation
public enum CalculatorOperation : System.Enum
'Declaration Public Enum CalculatorOperation Inherits System.Enum
'Usage Dim instance As CalculatorOperation
public enum CalculatorOperation : System.Enum
Member | Description |
---|---|
Add | The Add operation. |
Backspace | The Backspace operation. |
C | The Clear operation. |
CE | The Clear Entry operation. |
DecimalPoint | The DecimalPoint operation. |
Digit0 | The Digit0 operation. |
Digit1 | The Digit1 operation. |
Digit2 | The Digit2 operation. |
Digit3 | The Digit3 operation. |
Digit4 | The Digit4 operation. |
Digit5 | The Digit5 operation. |
Digit6 | The Digit6 operation. |
Digit7 | The Digit7 operation. |
Digit8 | The Digit8 operation. |
Digit9 | The Digit9 operation. |
Divide | The Divide operation. |
Equal | The Equal operation. |
MemoryClear | The MemoryClear operation. |
MemoryMinus | The MemoryMinus operation. |
MemoryPlus | The MemoryPlus operation. |
MemoryRecall | The MemoryRecall operation. |
MemorySave | The MemorySave operation. |
Multiply | The Multiply operation. |
None | No operation. |
Percentage | The Percentage operation. |
Reciprocal | The Reciprocal operation. |
Sign | The Sign operation. |
SquareRoot | The SquareRoot operation. |
Subtract | The Subtract operation. |
Each one of CalculatorOperation enumeration value stands for a operation which could be a digit input, an operator, a memory operation or other possible operations.
And it is assigned to the System.Windows.Input.ICommandSource.CommandParameter for specifying the specific operation assigned to the command source.
For example, registering a System.Windows.Input.KeyBinding to a GrapeCity.Windows.InputMan.GcDropDownCalculator control, the GcDropDownCalculator.ProcessCommand command should be assigned to the System.Windows.Input.InputBinding.Command of the System.Windows.Input.KeyBinding, and a CalculatorOperation enumeration value should be assigned to the System.Windows.Input.InputBinding.CommandParameter, then the GrapeCity.Windows.InputMan.GcDropDownCalculator control will process the operation which is set to specified keys.
System.Object
System.ValueType
System.Enum
GrapeCity.Wpf.SpreadSheet.CellType.Editors.CalculatorOperation