windowsforms-devexpress-dot-xtrabars-dot-docking2010-dot-views-dot-widget-dot-document-7e91512c.md
Provides access to a Length structure that specifies the height of this widget in Free Layout Mode.
Namespace : DevExpress.XtraBars.Docking2010.Views.Widget
Assembly : DevExpress.XtraBars.v25.2.dll
NuGet Package : DevExpress.Win.Navigation
public Length FreeLayoutHeight { get; }
Public ReadOnly Property FreeLayoutHeight As Length
| Type | Description |
|---|---|
| Length |
A Length structure that specifies the height of this widget in Free Layout Mode.
|
In Free Layout Mode, documents are sized according to the FreeLayoutHeight and Document.FreeLayoutWidth properties. Both properties provide access to Length structures that store two values.
Using these properties, you can resize widgets, but only one property will work at a time. For instance, if one widget is docked to another widget’s side so that both documents are arranged horizontally, only the FreeLayoutWidth property will be in effect. The FreeLayoutHeight property of both containers will be ignored since document height is managed by the docking container that hosts these documents.
See the Free Layout Mode article to learn more.
See Also