ListBoxColumnCollection.Item[Int32] Property
In This Article
Provides indexed access to individual columns within the ListBoxColumnCollection.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.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 |
---|---|
List |
A List |
#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