Skip to main content
All docs
V23.2

BaseView.AddFloatDocument(Control, String) Method

Creates a floating document that hosts the target control.

Namespace: DevExpress.XtraBars.Docking2010.Views

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public BaseDocument AddFloatDocument(
    Control control,
    string caption = null
)

Parameters

Name Type Description
control Control

The floating document content.

Optional Parameters

Name Type Default Description
caption String null

The Document caption.

Returns

Type Description
BaseDocument

A newly created BaseDocument object.

Remarks

The control parameter specifies the contents for the newly created document. You can use any Control or Form descendant as the document’s contents.

To subsequently access the document’s contents, use the BaseDocument.Control property.

When a document is added to a View, the BaseView.DocumentAdded event fires.

If a TabbedView is currently used, call the BaseView.AddDocument method to add a tabbed document instead of a floating document.

Floating documents within a TabbedView can be hosted either in individual containers, or in containers where other floating documents can be docked. See the BaseView.FloatingDocumentContainer property to learn more.

See Also