System.Windows.Forms.CommonDialog.OnHelpRequest C# (CSharp) Method

OnHelpRequest() protected method

protected OnHelpRequest ( EventArgs e ) : void
e System.EventArgs
return void
		protected virtual void OnHelpRequest(EventArgs e) {
			EventHandler eh = (EventHandler)(Events [HelpRequestEvent]);
			if (eh != null)
				eh (this, e);
		}