Vcl.ComCtrls.TLVColumnRClickEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TLVColumnRClickEvent = procedure(Sender: TObject; Column: TListColumn;
Point: TPoint) of object;

C++

typedef void __fastcall (__closure *TLVColumnRClickEvent)(System::TObject* Sender, TListColumn* Column, const System::Types::TPoint &Point);

Properties

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

Description

TLVColumnRClickEvent is a procedure called by the OnColumnRightClick event.

The Sender parameter is the list view that the user clicked.

The Column parameter is the TListColumn object from the Columns property for the column that was clicked.

The Point parameter indicates where the user clicked the mouse, in client coordinates.

See Also