Skip to main content

FloatGroup.IsOpen Property

Gets or sets whether the current FloatGroup object is visible. This is a dependency property.

Namespace: DevExpress.Xpf.Docking

Assembly: DevExpress.Xpf.Docking.v23.2.dll

NuGet Package: DevExpress.Wpf.Docking

Declaration

public bool IsOpen { get; set; }

Property Value

Type Description
Boolean

true if the current FloatGroup object is visible; otherwise, false.

Remarks

The IsOpen property allows you to temporarily hide a FloatGroup object and then restore it. Hiding a FloatGroup via the IsOpen property doesn’t destroy the group. A hidden group’s child panels are not accessible via the DockLayoutManager.ClosedPanels collection.

When a FloatGroup’s ‘x’ button is clicked or the DockControllerBase.Close method is called, the FloatGroup is destroyed and its child panels are closed. They are then accessible via the DockLayoutManager.ClosedPanels collection.

See Also