Skip to main content

ToolbarCustomCssListEditItemCollection.Item[Int32] Property

Returns a ToolbarCustomCssListEditItem object from the ToolbarCustomCssListEditItemCollection at the specified index.

Namespace: DevExpress.Web.ASPxHtmlEditor

Assembly: DevExpress.Web.ASPxHtmlEditor.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public ToolbarCustomCssListEditItem this[int index] { get; }

Parameters

Name Type Description
index Int32

An integer value that is the zero-based index of the ToolbarCustomCssListEditItem to retrieve from the ToolbarCustomCssListEditItemCollection.

Property Value

Type Description
ToolbarCustomCssListEditItem

A ToolbarCustomCssListEditItem object, that is an item with the specified index.

Remarks

The property allows you to get access to a particular ToolbarCustomCssListEditItem within the ToolbarCustomCssListEditItemCollection by its index. To iterate through all items of the ToolbarCustomCssListEditItemCollection, use the Item property, together with the StateManagedCollectionBase.Count property.

See Also