Skip to main content

TcxCheckListBoxItems.Delete(Integer) Method

Deletes the specified item from the collection.

Declaration

procedure Delete(Index: Integer);

Parameters

Name Type
Index Integer

Remarks

The Delete method allows you to delete specific items via code. The Index parameter specifies the item’s index to delete. Index can vary between 0 and Count - 1.

The list box’s Clear method lets you delete all items from the collection.

To delete only selected (highlighted) items, see the control’s DeleteSelected method.

See Also