Vcl.ExtActns.TListControlCopySelection.Destination

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Destination: TCustomListControl read FDestination write SetDestination;

C++

__property Vcl::Controls::TCustomListControl* Destination = {read=FDestination, write=SetDestination};

Properties

Type Visibility Source Unit Parent
property published
Vcl.ExtActns.pas
Vcl.ExtActns.hpp
Vcl.ExtActns TListControlCopySelection

Description

Specifies the list control to which items are copied.

Destination is the list control to which the action copies selected items from its target. It is a TCustomListControl descendant, such a TListView or TListBox.

You must explicitly set Destination to indicate the list control that receives the new items. These items are copied from the list control specified by the ListControl property. Destination and ListControl do not need to be the same type of control, as long as they are both TCustomListControl descendants.

See Also