Version

SavePreset(Stream,String,String,PresetType) Method

Saves the properties of a control to a file, so that they can be used by another control via the LoadPreset method.
Syntax
'Declaration
 
Public Overloads Sub SavePreset( _
   ByVal stream As Stream, _
   ByVal name As String, _
   ByVal desc As String, _
   ByVal presetType As PresetType _
) 
public void SavePreset( 
   Stream stream,
   string name,
   string desc,
   PresetType presetType
)

Parameters

stream
The stream in which to write Preset File. The stream will not be closed at the end of the call, and should be closed afterwards.
name
The name the preset will have.
desc
A description of the preset.
presetType
The type of properties (Appearance, Behavior, or Both) which should be saved in this preset.
Example
Dim fs As System.IO.FileStream =  New System.IO.FileStream(Me.Page.MapPath("./MyPreset.xml"),System.IO.FileMode.Create) 
Me.WebControl1.SavePreset(fs, "My Preset", "This is a description of my preset", Infragistics.WebUI.PresetType.All) 
fs.Close()
System.IO.FileStream fs = new System.IO.FileStream(this.Page.MapPath("./MyPreset.xml"), System.IO.FileMode.Create); 
this.WebControl1.SavePreset(fs, "My Preset", "This is a description of my preset", Infragistics.WebUI.PresetType.All); 
fs.Close();
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, 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