Skip to main content

XtraTabPageCollection.Item[Int32] Property

Gets the tab page at the specified position within the collection.

Namespace: DevExpress.XtraTab

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public virtual XtraTabPage this[int index] { get; }

Parameters

Name Type Description
index Int32

An integer value representing the zero-based index of the page. If it’s negative or exceeds the number of elements, an exception is raised.

Property Value

Type Description
XtraTabPage

An XtraTabPage object which represents the tab page at the specified position.

Remarks

Use this property to access individual tab pages using index notation.

See Also