System.Windows.Forms.Control.OnMarginChanged C# (CSharp) Méthode

OnMarginChanged() protected méthode

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