'Declaration Public Overloads Sub SaveLayout( _ ByVal stream As System.IO.Stream _ )
public void SaveLayout( System.IO.Stream stream )
Parameters
- stream
- The stream where the values of layout properties will be saved.
'Declaration Public Overloads Sub SaveLayout( _ ByVal stream As System.IO.Stream _ )
public void SaveLayout( System.IO.Stream stream )
// save comboBox properties to a MemoryStream object. MemoryStream m = new MemoryStream(); C1ComboBox comboBox = new C1ComboBox(); comboBox.Items.Add(new C1ComboBoxItem("test1")); comboBox.Items.Add(new C1ComboBoxItem("test2")); comboBox.SaveLayout(m);