Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

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.v24.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