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

XtraTabbedMdiManager.ShowFloatingDropHint Property

Gets or sets whether hints are displayed to indicate positions when a floating page is being dragged-and-dropped onto the XtraTabbedMdiManager‘s header region.

Namespace: DevExpress.XtraTabbedMdi

Assembly: DevExpress.XtraBars.v18.2.dll

Declaration

[DXCategory("Behavior")]
[DefaultValue(DefaultBoolean.Default)]
public DefaultBoolean ShowFloatingDropHint { get; set; }

Property Value

Type Default Description
DefaultBoolean **Default**

true if the hints are enabled; otherwise, false.

Available values:

Name Description
True

Corresponds to a Boolean value of true.

False

Corresponds to a Boolean value of false.

Default

The value is determined by the current object’s parent object setting (e.g., a control setting).

Remarks

To allow pages to be made floating, use the XtraTabbedMdiManager.FloatOnDrag property. The ShowFloatingDropHint property enables hints that help an end-user decide where to dock a floating page, when performing a drag-and-drop over the XtraTabbedMdiManager’s header area.

The DefaultBoolean.Default value assigned to the ShowFloatingDropHint property is interpreted as DefaultBoolean.True.

If the ShowFloatingDropHint property is set to False, a dragged floating page that is hovered over the XtraTabbedMdiManager’s header area for a specified duration, is automatically docked to the XtraTabbedMdiManager. This delay is specified by the XtraTabbedMdiManager.FloatMDIChildDockDelay property.

See Also