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.OnInitEditValue Event

In This Article

Enables you to initialize the edit value of an in-place cell editor.

#Declaration

Delphi
property OnInitEditValue: TdxSpreadSheetViewInitInplaceEditValueEvent read; write;

#Remarks

This event is fired after the OnInitEdit event, allowing you to specify the activated in-place editor’s edit value by using the AValue parameter which is pre-initialized to the current cell object value by deafult.

Use the Sender parameter to refer to the worksheet that raised the OnInitEditValue event. Cast the parameter to its actual type to access the worksheet’s type-specific properties.

The AEdit parameter specifies the activated in-place cell editor.

See Also