FMX.Colors.TColorListBox.OnDragChange

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property OnDragChange: TOnListBoxDragChange read FOnDragChange write FOnDragChange;

C++

__property OnDragChange;

Properties

Type Visibility Source Unit Parent
event published
FMX.Colors.pas
FMX.Colors.hpp
FMX.Colors TColorListBox

Description

Occurs after a drag-and-drop operation.

FMX.Colors.TColorListBox.OnDragChange inherits from FMX.ListBox.TCustomListBox.OnDragChange. All content below this line refers to FMX.ListBox.TCustomListBox.OnDragChange.

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