TabPageCollection.Item[Int32] Property
Provides indexed access to individual tab pages within the TabPageCollection.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v20.2.dll
Declaration
public TabPage this[int index] { get; }
Public ReadOnly Property Item(index As Integer) As TabPage
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. |
Available values:
Name | Description |
---|---|
TabTextTemplate | Gets or sets a template used to display the content of the current page's tab text. |
ActiveTabTextTemplate | Gets or sets a template used for displaying the text content of the current page's tab when it's active. |
TabTemplate | Gets or sets a template used to display the content of the current page's tab. |
ActiveTabTemplate | Gets or sets a template used for displaying the content of the current page's tab when it's active. |
FindControl(String) | Searches the current naming container for a server control with the specified id parameter. |
TabPage(String, String, String) | Initializes a new instance of the TabPage class with the specified settings. |
TabPage(String, String) | Initializes a new instance of the TabPage class with the specified settings. |
TabPage(String) | Initializes a new instance of the TabPage class using the specified display text. |
TabPage() | Initializes a new instance of the TabPage class. |
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.