TabCollection.Item[Int32] Property
In This Article
Provides indexed access to individual tabs within the TabCollection.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
#Parameters
Name | Type | Description |
---|---|---|
index | Int32 | An integer value specifying the zero-based index of the tab to be accessed. |
#Property Value
Type | Description |
---|---|
Tab | A Tab object representing the tab located at the specified index within the collection. |
#Remarks
Use this property to access a particular tab using index notation.
Items in the TabCollection are added to and removed from the collection using the TabCollection.Add, TabCollection.Remove and Clear() methods.
See Also