Skip to main content
Tab

ListEditItemCollection Class

Represents the collection of list items.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public class ListEditItemCollection :
    ListEditItemCollectionBase,
    IEnumerable<ListEditItem>,
    IEnumerable

The following members return ListEditItemCollection objects:

Remarks

Each list editor holds its items within a collection which is represented by an instance of the ListEditItemCollection class and can be accessed via the editor’s Items property (either the ASPxListEdit.Items or ASPxAutoCompleteBoxBase.Items depending upon the editor’s type). The properties and methods exposed by the ListEditItemCollection class can be used to perform common collection operations such as adding new or deleting the existing items. Each item of the collection is represented by a ListEditItem object. Individual items can be accessed using indexer notation, by their values or display texts using the specific methods of the collection.

Implements

DevExpress.Utils.IAssignableCollection
See Also