Vcl.ComCtrls.TCustomListView.DropTarget

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property DropTarget: TListItem read GetDropTarget write SetDropTarget;

C++

__property TListItem* DropTarget = {read=GetDropTarget, write=SetDropTarget};

Properties

Type Visibility Source Unit Parent
property public
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TCustomListView

Description

Specifies which item in the list is the target of a drag and drop operation.

Read DropTarget to determine whether an item in the list is the target of a drag and drop operation. Set DropTarget to change whether a particular item in the list can be the drop target of a dragged item.

Note: DropTarget only indicates the list item that appears to the user as a drop target. The application must still implement the drag-and-drop behavior for the item.

See Also