System.Windows.Forms.ToolStripManager.SaveSettings C# (CSharp) Method

SaveSettings() public static method

public static SaveSettings ( Form sourceForm, string key ) : void
sourceForm Form
key string
return void
		public static void SaveSettings (Form sourceForm, string key)
		{
			if (sourceForm == null)
				throw new ArgumentNullException ("sourceForm");
			if (string.IsNullOrEmpty (key))
				throw new ArgumentNullException ("key");
		}
		#endregion

Same methods

ToolStripManager::SaveSettings ( Form sourceForm ) : void