Skip to main content

TileContainer.SaveLayoutToStream(Stream) Method

Saves the current TileContainer‘s layout to a stream.

Namespace: DevExpress.XtraBars.Docking2010.Views.WindowsUI

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public void SaveLayoutToStream(
    Stream stream
)

Parameters

Name Type Description
stream Stream

A Stream object to which the layout should be saved.

Remarks

The SaveLayoutToStream method saves the current TileContainer‘s layout to a stream. A saved layout can later be restored via the TileContainer.RestoreLayoutFromStream method.

Alternatively, you can save a TileContainer‘s layout to an XML file or registry via the TileContainer.SaveLayoutToXml or TileContainer.SaveLayoutToRegistry methods respectively.

Saving and restoring a layout affects only group and item arrangements. Item content and appearance settings are not kept.

Tip

You can utilize the Persistence Behavior or Workspace Manager component to save and restore layouts for all supported DevExpress controls at once.

See Also