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

OnValidating() private method

private OnValidating ( System e ) : void
e System
return void
		protected virtual void OnValidating(System.ComponentModel.CancelEventArgs e) {
			CancelEventHandler eh = (CancelEventHandler)(Events [ValidatingEvent]);
			if (eh != null)
				eh (this, e);
		}
Control