Skip to main content
Tab

TabPageCollection.Item[Int32] Property

Provides indexed access to individual tab pages within the TabPageCollection.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v24.2.dll

NuGet Package: DevExpress.Web

#Declaration

public TabPage this[int index] { get; }

#Parameters

Name Type Description
index Int32

An integer value specifying the zero-based index of the tab page to be accessed.

#Property Value

Type Description
TabPage

A TabPage object representing the tab page located at the specified index within the collection.

#Remarks

Use this property to access a particular tab page using index notation.

Items in the TabPageCollection are added to and removed from the collection using the TabPageCollection.Add, TabPageCollection.Remove and Clear() methods.

See Also