Vcl.Grids.TCustomGrid.FixedCellClick

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

procedure FixedCellClick(ACol, ARow: Longint); dynamic;

C++

DYNAMIC void __fastcall FixedCellClick(int ACol, int ARow);

Properties

Type Visibility Source Unit Parent
procedure
function
protected
Vcl.Grids.pas
Vcl.Grids.hpp
Vcl.Grids TCustomGrid

Description

Triggers the OnFixedCellClick event.

FixedCellClick is called whenever the user clicks in a fixed cell. Descending classes can override FixedCellClick to support custom processing for this event. As defined in TCustomGrid, FixedCellClick simply triggers the OnFixedCellClick event.

OnFixedCellClick is only triggered if the Options property includes either goFixedRowClick or goFixedColClick, or both. Also, at least one fixed column or row must me defined.

See Also