FMX.ListBox.TCustomListBox.OnDragChange

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnDragChange: TOnListBoxDragChange read FOnDragChange write FOnDragChange;

C++

__property TOnListBoxDragChange OnDragChange = {read=FOnDragChange, write=FOnDragChange};

Properties

Type Visibility Source Unit Parent
event protected
FMX.ListBox.pas
FMX.ListBox.hpp
FMX.ListBox TCustomListBox

Description

Occurs after a drag-and-drop operation.

The OnDragChange event occurs after a drag-and-drop operation and allows you to make further changes to the list box. If AllowDrag is set to True, you can write an event handler to specify the changes to the list box when a list box item is dragged inside the list.

See TOnListBoxDragChange for more details.

See Also