Skip to main content
A newer version of this page is available. .
Tab

ListEditItemCollection Class

Represents the collection of list items.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

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

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