Version

SaveAsBinary(Stream) Method

Saves data about the UltraTilePanel to the specified stream in binary format.
Syntax
'Declaration
 
Public Overloads Sub SaveAsBinary( _
   ByVal stream As Stream _
) 
public void SaveAsBinary( 
   Stream stream
)

Parameters

stream
The stream to write to.
Example
The following code demonstrates how to save the UltraTilePanel layout to a binary file.

Imports System.Windows.Forms
Imports Infragistics.Win
Imports Infragistics.Win.Misc

Try
    ' Save the layout of the UltraTilePanel to a binary file.
    Dim stream As New System.IO.FileStream("C:\\TilePanelLayout.bin", System.IO.FileMode.OpenOrCreate)
    Me.UltraTilePanel1.SaveAsBinary(stream)
    stream.Close()
Catch
    Debug.WriteLine("Error encountered while saving stream!")
End Try
using System.Windows.Forms;
using Infragistics.Win;
using Infragistics.Win.Misc;

try
{
	// Save the layout of the UltraTilePanel to a binary file.
	using ( FileStream stream = new FileStream( "C:\\TilePanelLayout.bin", FileMode.OpenOrCreate ) )
		this.ultraTilePanel1.SaveAsBinary( stream );
}
catch
{
	Debug.WriteLine( "Error encountered while saving stream!" );
}
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also