Skip to main content

TabbedGroup.SelectedTabPage Property

Gets or sets the currently selected layout group within the tabbed group.

Namespace: DevExpress.XtraLayout

Assembly: DevExpress.XtraLayout.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[DXCategory("Behavior")]
public LayoutGroup SelectedTabPage { get; set; }

Property Value

Type Description
LayoutGroup

A LayoutGroup object which represents the tabbed page that is currently selected.

Remarks

Tab pages displayed by the tabbed group are represented by the LayoutGroup objects. Read the SelectedTabPage property’s value to determine which tab page is currently selected. Assign a layout group to this property to select it. If the assigned group is not visible, the pages are scrolled to make the group visible.

The index of the selected tab page is specified by the TabbedGroup.SelectedTabPageIndex property.

See Also