Saves the control layout properties to the file.

Namespace:  C1.Web.UI.Controls.C1ComboBox
Assembly:  C1.Web.UI.Controls.3 (in C1.Web.UI.Controls.3.dll)

Syntax

C#
public void SaveLayout(
	string filename
)
Visual Basic (Declaration)
Public Sub SaveLayout ( _
	filename As String _
)

Parameters

filename
Type: System..::..String
The file where the values of the layout properties will be saved.

Implements

IC1SerializableSaveLayout(String)

Examples

Following code shows how to use this method.
Copy CodeC#
C1ComboBox comboBox = new C1ComboBox();
comboBox.Items.Add(new C1ComboBoxItem("test1"));
comboBox.Items.Add(new C1ComboBoxItem("test2"));
string path = "c:\comboBox.xml";
// the comboBox is saved in comboBox.xml
comboBox.SaveLayout(path);

See Also