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);
		}