Back to Devexpress

DXTabControl.GetTabItem(Object) Method

wpf-devexpress-dot-xpf-dot-core-dot-dxtabcontrol-dot-gettabitem-x28-system-dot-object-x29.md

latest2.0 KB
Original Source

DXTabControl.GetTabItem(Object) Method

Returns a tab item by the corresponding data item.

Namespace : DevExpress.Xpf.Core

Assembly : DevExpress.Xpf.Core.v25.2.dll

NuGet Package : DevExpress.Wpf.Core

Declaration

csharp
public DXTabItem GetTabItem(
    object item
)
vb
Public Function GetTabItem(
    item As Object
) As DXTabItem

Parameters

NameTypeDescription
itemObject

A data item that corresponds to the required tab item.

|

Returns

TypeDescription
DXTabItem

A DXTabItem object, that is a tab item corresponding to the specified data item; null ( Nothing in Visual Basic) if the specified data item does not exist.

|

Remarks

Use the GetTabItem method to obtain a tab item, when tab control’s data items are not the DXTabItem type. This happens when the tab control is bound to a data source, or when its Items collection has been manually filled with arbitrary objects. In this instance, the GetTabItem method returns a DXTabItem object obtained from the specified data item, using the template specified by the ItemTemplate property.

To obtain a tab item by its index, use another overload of the GetTabItem method that takes the index parameter.

See Also

DXTabItem

DXTabControl Class

DXTabControl Members

DevExpress.Xpf.Core Namespace