'Declaration Public Overloads Sub SaveLayout( _ ByVal filename As System.String _ )
public void SaveLayout( System.string filename )
Parameters
- filename
- The file where the values of the layout properties will be saved.
'Declaration Public Overloads Sub SaveLayout( _ ByVal filename As System.String _ )
public void SaveLayout( System.string filename )
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);