System.Windows.Forms.Form.OnClosing C# (CSharp) Method

OnClosing() private method

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