Skip to main content

TcxCustomGridTableView.OnInitEditValue Event

Allows you to initialize the activated cell editor’s edit value for a particular cell.

Declaration

property OnInitEditValue: TcxGridInitEditValueEvent read; write;

Remarks

This event is fired after the OnInitEdit event and allows you to specify the activated cell editor’s edit value via the AValue parameter. This parameter is pre-initialized by the cell value.

The View that fired this event is passed as the Sender parameter.

The AItem parameter provides access to the item whose cell is being edited.

The AEdit parameter represents the activated cell editor. When the editor is open, you can access it via the View’s Controller.EditingController.Edit property.

See Also