Skip to main content
A newer version of this page is available. .

SpreadsheetFormulaBar.CancelButtonClick Event

Occurs when the Cancel button on the Formula Bar is clicked.

Namespace: DevExpress.XtraSpreadsheet

Assembly: DevExpress.XtraSpreadsheet.v18.2.dll

Declaration

public event EventHandler CancelButtonClick

Event Data

The CancelButtonClick event's data class is EventArgs.

Remarks

The Formula Bar contains three buttons, each of which has a default action:

  • Cancel button cancels the user input;
  • Enter button completes the user edit and evaluates the entered formula;
  • Insert Function button inserts a function from the Function Library.

SpreadsheetControl_NewFormulaBarElements

This default action is performed each time a user clicks the button. You can however, override the default behavior or perform additional actions when the button is clicked. Handle the CancelButtonClick event for this purpose. This event fires each time the Cancel button is clicked.

See Also