Skip to main content
Tab

TitleIndexItemCollection Class

Represents a collection of data items displayed within the ASPxTitleIndex control when it isn’t bound to any data source.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public class TitleIndexItemCollection :
    Collection<TitleIndexItem>

The following members return TitleIndexItemCollection objects:

Remarks

When a ASPxTitleIndex control doesn’t obtain items from a data source (that is, its ASPxDataWebControlBase.DataSource property is not assigned), it can hold its data items within a collection which is represented by an instance of the TitleIndexItemCollection class, and can be accessed via the control’s ASPxTitleIndex.Items property. The properties and methods exposed by the TitleIndexItemCollection 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 TitleIndexItem object. Individual items can be accessed using indexer notation within the collection.

See Also