CalculatorButton Enumeration
Enum representing the buttons on a classic calculator.
Namespace: ClassicCalculatorAssembly: ClassicCalculator (in ClassicCalculator.dll) Version: 1.0.0+5cef018da377eef51dd690d3240ce68b7f7e05df
public enum CalculatorButton
Zero | 0 |
Button for the digit 0.
|
One | 1 |
Button for the digit 1.
|
Two | 2 |
Button for the digit 2.
|
Three | 3 |
Button for the digit 3.
|
Four | 4 |
Button for the digit 4.
|
Five | 5 |
Button for the digit 5.
|
Six | 6 |
Button for the digit 6.
|
Seven | 7 |
Button for the digit 7.
|
Eight | 8 |
Button for the digit 8.
|
Nine | 9 |
Button for the digit 9.
|
Decimal | 10 |
Button for the decimal point.
|
Add | 11 |
Button for the addition operation.
|
Subtract | 12 |
Button for the subtraction operation.
|
Multiply | 13 |
Button for the multiplication operation.
|
Divide | 14 |
Button for the division operation.
|
Equals | 15 |
Button for the equals operation.
|
Clear | 16 |
Button to clear the current input.
|
Percentage | 17 |
Button for the percentage operation.
|
SquareRoot | 18 |
Button for the square root operation.
|
ToggleSign | 19 |
Button to toggle the sign of the current input.
|