Skip to main content

TabbedView.DocumentGroups Property

Provides access to a collection of document groups.

Namespace: DevExpress.XtraBars.Docking2010.Views.Tabbed

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public DocumentGroupCollection DocumentGroups { get; }

Property Value

Type Description
DevExpress.XtraBars.Docking2010.Views.Tabbed.DocumentGroupCollection

A DocumentGroupCollection object.

Remarks

Documents in a TabbedView are displayed as tabs. The TabbedView‘s area can be split vertically or horizontally into document groups. In code, you can create a new group via the ITabbedViewController.CreateNewDocumentGroup method accessible via the View’s Controller object. An end-user can split the area via a document’s context menu or drag-and-drop.

When you do not create extra groups, there is one default group that displays all documents. When document groups are created, they are added to the TabbedView.DocumentGroups collection.

The number of documents simultaneously displayed in a group can be limited via the IDocumentGroupProperties.MaxDocuments and IDocumentGroupDefaultProperties.MaxDocuments properties.

See Also