Vcl.Controls.TCustomMultiSelectListControl
Delphi
TCustomMultiSelectListControl = class(TCustomListControl)
C++
class PASCALIMPLEMENTATION TCustomMultiSelectListControl : public TCustomListControl
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
class | public | Vcl.Controls.pas Vcl.Controls.hpp |
Vcl.Controls | Vcl.Controls |
Description
TCustomMultiSelectListControl is the base class for list controls that allow multiple items to be selected.
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.