Occurs when the user clicks a Help button.
The following declaration shows the syntax for a method that handles the Help event.
[Visual Basic] Private Sub CommonDialogName_Help( _ ByVal sender As Object, _ ByVal e As EventArgs _ ) [C#] private void CommonDialogName_Help( object sender, EventArgs e ); [C++] private: void CommonDialogName_Help( Object* sender, EventArgs* e ); [JScript] private CommonDialogName_Help( sender : Object, e : EventArgs );
Property | Description |
---|---|
|
This event is raised when the user presses the Help button on the common dialog box.
CommonDialog Class | CommonDialog MembersTopic | System.WinForms Namespace | CommonDialog.OnHelp | CommonDialog.Help