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

TabCollection.Item[Int32] Property

Provides indexed access to individual tabs within the TabCollection.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

public Tab this[int index] { get; }

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