Vcl.Grids.TFixedCellClickEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TFixedCellClickEvent = procedure (Sender: TObject; ACol, ARow: Longint) of object;

C++

typedef void __fastcall (__closure *TFixedCellClickEvent)(System::TObject* Sender, int ACol, int ARow);

Properties

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

Description

TFixedCellClickEvent is the procedural type used for OnFixedCellClick events.

Declare methods of type TFixedCellClickEvent to assign them to OnFixedCellClick events. The ACol and ARow parameters specify the fixed cell's logical coordinates on which the click occurred.

See Also