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

LayoutGroup.AddTabbedGroup(TabbedGroup) Method

Inserts the specified tabbed group to the current group.

Namespace: DevExpress.XtraLayout

Assembly: DevExpress.XtraLayout.v19.2.dll

Declaration

public TabbedGroup AddTabbedGroup(
    TabbedGroup newTabbedGroup
)

Parameters

Name Type Description
newTabbedGroup TabbedGroup

The tabbed group to add to the collection.

Returns

Type Description
TabbedGroup

The added group.

Remarks

The default layout type is determined by the LayoutGroup.DefaultLayoutType property. By default, it is set to LayoutType.Vertical, so the new group is positioned at the bottom of the current group. If this property is set to LayoutType.Horizontal, the new group is positioned at the current group’s right edge.

To add tabs to the new tabbed group, use the TabbedGroup.AddTabPage method.

See Also