API:Vcl.Touch.GestureCtrls.TGestureListView.OnColumnDragged

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnColumnDragged;

C++

__property OnColumnDragged;

Properties

Type Visibility Source Unit Parent
event published
Vcl.Touch.GestureCtrls.pas
Vcl.Touch.GestureCtrls.hpp
Vcl.Touch.GestureCtrls TGestureListView

Description

Occurs when a column is dragged to a new position.

Vcl.Touch.GestureCtrls.TGestureListView.OnColumnDragged inherits from Vcl.ComCtrls.TCustomListView.OnColumnDragged. All content below this line refers to Vcl.ComCtrls.TCustomListView.OnColumnDragged.

Occurs when a column is dragged to a new position.

Write an OnColumnDragged event handler to respond when the user drags a column to a new position. OnColumnDragged occurs after all columns are in their new positions but before the list view repaints to reflect the change.

OnColumnClick only occurs when ViewStyle is vsReport and ShowColumnHeaders is True.

Tip: To uniquely identify columns so that you can recognize them after they are repositioned, use the list column's Tag property.

See Also