Skip to main content

BaseLayoutItem.RestoreFromCustomization(LayoutGroup) Method

Restores the current layout item from the Customization Form and adds it to the specified group with the default layout type.

Namespace: DevExpress.XtraLayout

Assembly: DevExpress.XtraLayout.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public virtual void RestoreFromCustomization(
    LayoutGroup parent
)

Parameters

Name Type Description
parent LayoutGroup

A LayoutGroup descendant which represents the layout group that the current layout item will be added to.

Remarks

The default layout type is determined by the LayoutGroup.DefaultLayoutType property. By default it is set to LayoutType.Vertical, so the restored layout item is positioned at the bottom of the parent group. If this property is set to LayoutType.Horizontal, the layout item is positioned at the parent group’s right edge.

Note

Empty space items, splitters, labels, and separators are automatically disposed off when they are moved to the Customization Form. You should recreate them.

See Also