Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxListItems Class

A list item collection.

#Declaration

Delphi
TdxListItems = class(
    TPersistent
)

#Remarks

The TdxListItems class members allow you to do the following:

The List View’s Items property references a TdxListItems object.

#Example

The following code checks all items in the List View control:

var
  AItem: TdxListItem;
begin
  dxListViewControl1.BeginUpdate;
  for AItem in dxListViewControl1.Items do
    AItem.Checked := True;
  dxListViewControl1.EndUpdate;
end;

Note

A List View control shows item checkboxes if the control’s Checkboxes property is set to True.

#Inheritance

TObject
TPersistent
TdxListItems
See Also