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

XRPivotGrid.RestoreLayoutFromStream(Stream) Method

Restores a pivot grid’s layout from the specified stream.

Namespace: DevExpress.XtraReports.UI

Assembly: DevExpress.XtraReports.v18.2.dll

Declaration

public void RestoreLayoutFromStream(
    Stream stream
)

Parameters

Name Type Description
stream Stream

A Stream descendant from which the pivot grid’s settings are read. If null (Nothing in Visual Basic), an exception is raised.

Remarks

Use the RestoreLayoutFromStream method to load the pivot grid’s layout from the stream to which the layout was saved.

The XRPivotGrid.OptionsLayout property controls which settings should be restored from the stream.

Example

The following sample code saves a Pivot Grid Control’s layout to a memory stream and then restores it.

System.IO.Stream stream;
stream = new System.IO.MemoryStream();
pivotGridControl1.SaveLayoutToStream(stream);
stream.Seek(0, System.IO.SeekOrigin.Begin);

// ...
pivotGridControl1.RestoreLayoutFromStream(stream);
stream.Seek(0, System.IO.SeekOrigin.Begin);
See Also