System.Windows.Forms.Control.OnMarginChanged C# (CSharp) Method

OnMarginChanged() protected method

protected OnMarginChanged ( EventArgs e ) : void
e System.EventArgs
return void
		protected virtual void OnMarginChanged (EventArgs e)
		{
			EventHandler eh = (EventHandler)(Events[MarginChangedEvent]);
			if (eh != null)
				eh (this, e);
		}
		[EditorBrowsable (EditorBrowsableState.Advanced)]
Control