Vcl.DBGrids.TCustomDBGrid.OnTitleClick

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnTitleClick: TDBGridClickEvent read FOnTitleClick write FOnTitleClick;

C++

__property TDBGridClickEvent OnTitleClick = {read=FOnTitleClick, write=FOnTitleClick};

Properties

Type Visibility Source Unit Parent
event protected
Vcl.DbGrids.pas
Vcl.DBGrids.hpp
Vcl.DBGrids TCustomDBGrid

Description

Occurs when the user releases the mouse in one of the column headers.

Write an OnTitleClick event handler to take specific action when the user clicks in one of the column headers. The Column parameter is the TColumn object that corresponds to the column where the mouse was when the user released the left mouse button.

See Also