TcxCalcButtonKind Enum
In This Article
Enumerates calculator buttons types.
#Declaration
Delphi
TcxCalcButtonKind = (
cbBack,
cbCancel,
cbClear,
cbMC,
cbMR,
cbMS,
cbMP,
cbNum0,
cbNum1,
cbNum2,
cbNum3,
cbNum4,
cbNum5,
cbNum6,
cbNum7,
cbNum8,
cbNum9,
cbSign,
cbDecimal,
cbDiv,
cbMul,
cbSub,
cbAdd,
cbSqrt,
cbPercent,
cbRev,
cbEqual,
cbNone
);
#Members
Name |
---|
cb
|
cb
|
cb
|
cb
|
cb
|
cb
|
cb
|
cb
|
cb
|
cb
|
cb
|
cb
|
cb
|
cb
|
cb
|
cb
|
cb
|
cb
|
cb
|
cb
|
cb
|
cb
|
cb
|
cb
|
cb
|
cb
|
cb
|
cb
|
#Remarks
TcxCalcButtonKind values are used in TcxCustomCalculator methods and events to identify calculator buttons.
The following table describes the button types.
Value | Description | Value | Description |
---|---|---|---|
cb |
The ‘Back’ button. | cb |
The ‘7’ button. |
cb |
The ‘CE’ button. | cb |
The ‘8’ button. |
cb |
The ‘C’ button. | cb |
The ‘9’ button. |
cb |
The ‘MC’ button. | cb |
The ‘+/-‘ button. |
cb |
The ‘MR’ button. | cb |
The ‘,’ button. |
cb |
The ‘MS’ button. | cb |
The ‘/‘ button. |
cb |
The ‘M+’ button. | cb |
The ‘*’ button. |
cb |
The ‘0’ button. | cb |
The ‘-‘ button. |
cb |
The ‘1’ button. | cb |
The ‘+’ button. |
cb |
The ‘2’ button. | cb |
The ‘sqrt’ button. |
cb |
The ‘3’ button. | cb |
The ‘%’ button. |
cb |
The ‘4’ button. | cb |
The ‘1/x’ button. |
cb |
The ‘5’ button. | cb |
The ‘=’ button. |
cb |
The ‘6’ button. | cb |
Does not identify any of calculator buttons. |
See Also