TdxCustomSpreadSheet.OnEditing Event
Occurs before activation of an in-place cell editor within a worksheet.
Declaration
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