Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxCustomSpreadSheet.OnEditing Event

In This Article

Occurs before activation of an in-place cell editor within a worksheet.

#Declaration

Delphi
property OnEditing: TdxSpreadSheetViewInplaceEditingEvent read; write;

#Remarks

The OnEditing event is generated when an end-user attempts to edit any editable cell within the active sheet. You can handle this event in order to provide a custom in-place cell editor.

The Sender parameter specifies a generic worksheet object that corresponds to a sheet whose in-place cell editor is being activated.

The AProperties parameter specifies the settings affecting the behavior of an in-place cell editor provided by the Spreadsheet control.

The Allow parameter specifies if invoking the default in-place cell editor is allowed. Set Allow to False to provide your own editor instead.

See Also