Vcl.Touch.GestureCtrls.TGestureListView.ColumnClick
Delphi
property ColumnClick: Boolean read FColumnClick write SetColumnClick default 1;
C++
__property ColumnClick = {default=1};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | published | Vcl.Touch.GestureCtrls.pas Vcl.Touch.GestureCtrls.hpp |
Vcl.Touch.GestureCtrls | TGestureListView |
Description
Determines whether the column header behaves like a button.
Vcl.Touch.GestureCtrls.TGestureListView.ColumnClick inherits from Vcl.ComCtrls.TCustomListView.ColumnClick. All content below this line refers to Vcl.ComCtrls.TCustomListView.ColumnClick.
Determines whether the column header behaves like a button.
Use ColumnClick to specify whether the OnColumnClick event should occur when the user clicks on the column header. When ColumnClick is true, the OnColumnClick occurs when the column header is clicked with the mouse. When ColumnClick is false, the OnColumnClick event never occurs.
Note: For column clicks to work, the column headers must be displayed. To display the headers, set the ShowColumnHeaders property to true and the ViewStyle property to vsReport.