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

TcxCustomGridTableView.OnInitEditValue Event

In This Article

Allows you to initialize the activated in-place editor value for a particular cell.

#Declaration

Delphi
property OnInitEditValue: TcxGridInitEditValueEvent read; write;

#Remarks

This event occurs after the OnInitEdit event and allows you to specify the activated in-place editor value through the AValue parameter.

The Sender parameter provides access to the grid View that raised the OnInitEditValue event.

The AItem parameter provides access to the data item whose cell is about to be edited.

The AEdit parameter provides access the activated in-place editor. You can access the active editor through the Controller.EditingController.Edit property.

See Also