Back to Devexpress

TcxCalcButtonKind Enum

vcl-cxlookandfeelpainters-66bcf7dc.md

latest2.2 KB
Original Source

TcxCalcButtonKind Enum

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
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

Remarks

TcxCalcButtonKind values are used in TcxCustomCalculator methods and events to identify calculator buttons.

The following table describes the button types.

ValueDescriptionValueDescription
cbBackThe ‘Back’ button.cbNum7The ‘7’ button.
cbCancelThe ‘CE’ button.cbNum8The ‘8’ button.
cbClearThe ‘C’ button.cbNum9The ‘9’ button.
cbMCThe ‘MC’ button.cbSignThe ‘+/-‘ button.
cbMRThe ‘MR’ button.cbDecimalThe ‘,’ button.
cbMSThe ‘MS’ button.cbDivThe ‘/‘ button.
cbMPThe ‘M+’ button.cbMulThe ‘*’ button.
cbNum0The ‘0’ button.cbSubThe ‘-‘ button.
cbNum1The ‘1’ button.cbAddThe ‘+’ button.
cbNum2The ‘2’ button.cbSqrtThe ‘sqrt’ button.
cbNum3The ‘3’ button.cbPercentThe ‘%’ button.
cbNum4The ‘4’ button.cbRevThe ‘1/x’ button.
cbNum5The ‘5’ button.cbEqualThe ‘=’ button.
cbNum6The ‘6’ button.cbNoneDoes not identify any of calculator buttons.

See Also

cxLookAndFeelPainters Unit