TGetEditEvent is the type of the event handlers that provide strings for the inplace editor of a grid.
TGetEditEvent = procedure (Sender: TObject; ACol, ARow: Longint; var Value: string) of object;
(Sender: TObject; ACol, ARow: Longint; var Value: string) ( TGetEditEvent)();
Grids
Sender is the grid whose cell is being edited.
ACol and ARow indicate the column and row indexes of the cell that is being edited.
Value is the string requested by the inplace editor for that cell. The event handler supplies this string.
Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
|
What do you think about this topic? Send feedback!
|