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

TreeList.RestoreLayoutFromStream(Stream, OptionsLayoutBase) Method

Loads the control’s layout from a stream, using the specified options.

Namespace: DevExpress.XtraTreeList

Assembly: DevExpress.XtraTreeList.v18.2.dll

Declaration

public virtual void RestoreLayoutFromStream(
    Stream stream,
    OptionsLayoutBase options
)

Parameters

Name Type Description
stream Stream

A System.IO.Stream object from which the control’s settings are read.

options OptionsLayoutBase

An OptionsLayoutTreeList object that specifies which Tree List options must be restored. Or, a OptionsLayoutBase.FullLayout object, to restore all the settings.

Remarks

Use the RestoreLayoutFromStream method to load the control’s layout from a stream to which a layout was saved via the TreeList.SaveLayoutToStream method call.

Note

When restoring a layout during a form load (for instance, in your Form.Load event handler), you may need to call the TreeList.ForceInitialize method prior to the layout restoration. See this method to learn more.

See Also