Back to Devexpress

TreeList.SaveLayoutToStream(Stream) Method

windowsforms-devexpress-dot-xtratreelist-dot-treelist-dot-savelayouttostream-x28-system-dot-io-dot-stream-x29.md

latest3.7 KB
Original Source

TreeList.SaveLayoutToStream(Stream) Method

Saves the control’s layout to a stream.

Namespace : DevExpress.XtraTreeList

Assembly : DevExpress.XtraTreeList.v25.2.dll

NuGet Packages : DevExpress.Win.Navigation, DevExpress.Win.TreeList

Declaration

csharp
public virtual void SaveLayoutToStream(
    Stream stream
)
vb
Public Overridable Sub SaveLayoutToStream(
    stream As Stream
)

Parameters

NameTypeDescription
streamStream

A System.IO.Stream object to which the control’s layout is written.

|

Remarks

Use the SaveLayoutToStream method to write the TreeList control’s layout to a stream. You can read stored settings from the stream via the TreeList.RestoreLayoutFromStream method.

The Tree List options that are saved are identified by the TreeList.OptionsLayout object.

Tip

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

Example

The following sample code saves layout of the Tree List control to a file stream and then restores it. The TreeList.SaveLayoutToStream and TreeList.RestoreLayoutFromStream methods are used for this purpose.

csharp
string fileName = "C:\\TreeListLayout";
System.IO.FileStream outFile = new System.IO.FileStream(fileName, System.IO.FileMode.Create);
treeList1.SaveLayoutToStream(outFile);
outFile.Close();
treeList2.DataSource = treeList1.DataSource;
System.IO.FileStream inFile = new System.IO.FileStream(fileName, System.IO.FileMode.Open);
treeList2.RestoreLayoutFromStream(inFile);
inFile.Close();
vb
Dim FileName As String = "C:\TreeListLayout"
Dim OutFile As New System.IO.FileStream(FileName, System.IO.FileMode.Create)
TreeList1.SaveLayoutToStream(OutFile)
OutFile.Close()
TreeList2.DataSource = TreeList1.DataSource
Dim inFile As New System.IO.FileStream(FileName, System.IO.FileMode.Open)
TreeList2.RestoreLayoutFromStream(inFile)
inFile.Close()

See Also

RestoreLayoutFromStream

SaveLayoutToRegistry

SaveLayoutToXml

Save and Restore Layouts of DevExpress controls

TreeList Class

TreeList Members

DevExpress.XtraTreeList Namespace