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

DockPanel.SavedDock Property

Gets or sets the docking style applied to a panel before it’s made to float or is hidden.

Namespace: DevExpress.XtraBars.Docking

Assembly: DevExpress.XtraBars.v19.1.dll

Declaration

[Browsable(false)]
[DefaultValue(DockingStyle.Float)]
[XtraSerializableProperty(2)]
public DockingStyle SavedDock { get; set; }

Property Value

Type Default Description
DockingStyle **Float**

A DockingStyle enumeration value.

Available values:

Name Description
Float

The dock panel floats.

Top

The dock panel’s top edge is docked to the top of its containing control.

Bottom

The dock panel’s bottom edge is docked to the bottom of its containing control.

Left

The dock panel’s left edge is docked to the left side of its containing control.

Right

The dock panel’s right edge is docked to the right side of its containing control.

Fill

The dock panel is contained within another panel (split or tab container).

It’s not possible to make a dock panel fill the form (user control).

Remarks

This member supports the .NET Framework infrastructure and is not intended to be used directly from your code.

See Also