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

XtraTabbedMdiManager.BeginFloating Event

Allows you to prevent a page from becoming floating.

Namespace: DevExpress.XtraTabbedMdi

Assembly: DevExpress.XtraBars.v19.1.dll

Declaration

[DXCategory("Events")]
public event FloatingCancelEventHandler BeginFloating

Event Data

The BeginFloating event's data class is DevExpress.XtraTabbedMdi.FloatingCancelEventArgs.

Remarks

For a page that is becoming floating, the following events fire:

  1. XtraTabbedMdiManager.BeginFloating - Fires before a page is made floating. The event allows you to prevent a page from becoming floating.
  2. XtraTabbedMdiManager.Floating - Fires when a page becomes floating.
  3. XtraTabbedMdiManager.FloatMDIChildDragging - Fires repeatedly when dragging a floating page.
  4. XtraTabbedMdiManager.EndFloating - Fires after a floating page has been dropped.

The XtraTabbedMdiManager.BeginFloating, XtraTabbedMdiManager.Floating and XtraTabbedMdiManager.EndFloating events do not fire when dragging floating pages that have already been made floating.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the BeginFloating event.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also