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

ListBoxColumnCollection.Item[Int32] Property

Provides indexed access to individual columns within the ListBoxColumnCollection.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

public ListBoxColumn this[int index] { get; }

Parameters

Name Type Description
index Int32

An integer that specifies the index of the required column within the collection.

Property Value

Type Description
ListBoxColumn

A ListBoxColumn object that represents a column at the specified index.

Remarks

Use the ListBoxColumnCollection.Add method, to add the column at the end of the column’s collection. To insert the column at the specified position within the collection, use the ListBoxColumnCollection.Insert method. The specified column can be removed by using the ListBoxColumnCollection.Remove method.

See Also