TcxCustomGridTableView.OnInitEditValue Event
Allows you to initialize the activated in-place editor value for a particular cell.
Declaration
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