RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
TCustomMultiSelectListControl Class

TCustomMultiSelectListControl is the base class for list controls that allow multiple items to be selected.

Pascal
TCustomMultiSelectListControl = class(TCustomListControl);
C++
class TCustomMultiSelectListControl : public TCustomListControl;

Controls

TCustomMultiSelectListControl is the common base class for controls that represent a list of items where the user can select one or more of those items. Its descendants include list boxes and list views. TCustomMultiSelectListControl implements a common set of properties and methods for working with the items in the list. This includes the ability to 

Specify whether the control allows one or multiple items to be selected. 

Determine the number of selected items. 

Add items to the list. 

Delete items from the list. 

Select items in the list. 

Copy items to another list control. 

Rearrange the order of items. 

TCustomMultiSelectListControl is an abstract class and cannot be directly instantiated. 

 

Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!