System.Windows.Forms.CommonDialog.OnHelpRequest C# (CSharp) Метод

OnHelpRequest() защищенный Метод

protected OnHelpRequest ( EventArgs e ) : void
e System.EventArgs
Результат void
		protected virtual void OnHelpRequest(EventArgs e) {
			EventHandler eh = (EventHandler)(Events [HelpRequestEvent]);
			if (eh != null)
				eh (this, e);
		}