RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
Grids.TSetEditEvent Type

TSetEditEvent is the type of the event handlers that assign strings to a cell in a grid.

Pascal
TSetEditEvent = procedure (Sender: TObject; ACol, ARow: Longint; const Value: string) of object;
C++
(Sender: TObject; ACol, ARow: Longint; const Value: string) ( TSetEditEvent)();

Grids

Sender is the grid whose cell was just edited. 

ACol and ARow indicate the column and row indexes of the cell that was edited. 

Value is the string to assign to the cell. 

 

Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!