DevExpress v24.2 Update — Your Feedback Matters Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release. Take the survey Not interested How to: Save and restore layout Nov 13, 2018 The following sample code saves the current layout to a memory stream and then restores it. C# VB.NET System.IO.Stream stream; stream = new System.IO.MemoryStream(); layoutControl1.SaveLayoutToStream(stream); stream.Seek(0, System.IO.SeekOrigin.Begin); // ... layoutControl1.RestoreLayoutFromStream(stream); stream.Seek(0, System.IO.SeekOrigin.Begin); Dim stream As System.IO.Stream stream = New System.IO.MemoryStream() LayoutControl1.SaveLayoutToStream(stream) stream.Seek(0, System.IO.SeekOrigin.Begin) ' ... LayoutControl1.RestoreLayoutFromStream(stream) stream.Seek(0, System.IO.SeekOrigin.Begin)