Vcl.Grids.TSetEditEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

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

C++

typedef void __fastcall (__closure *TSetEditEvent)(System::TObject* Sender, int ACol, int ARow, const System::UnicodeString Value);

Properties

Type Visibility Source Unit Parent
type
typedef
public
Vcl.Grids.pas
Vcl.Grids.hpp
Vcl.Grids Vcl.Grids

Description

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

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.

See Also