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

LayoutGroup.SelectedTabIndex Property

Gets or sets the index of the selected tabbed child among visible children. This member is in effect when the current group is rendered as a tabbed group. This is a dependency property.

Namespace: DevExpress.Xpf.LayoutControl

Assembly: DevExpress.Xpf.LayoutControl.v18.2.dll

Declaration

public int SelectedTabIndex { get; set; }

Property Value

Type Description
Int32

A zero-based integer that specifies the index of the selected tabbed child among visible children.

Remarks

The SelectedTabIndex member is in effect when the group is represented as a tabbed group (the LayoutGroup.View property is set to LayoutGroupView.Tabs).

You can use the SelectedTabIndex property to select a specific tab. Another way to select a tab is to use the LayoutGroup.SelectTab method.

See Also