Occurs when the user requests help for a control.
Syntax
Visual Basic (Declaration) | |
---|
<SRCategoryAttribute("Behavior")>
<SRDescriptionAttribute("Occurs when the user invokes Help for the control.")>
Public Event HelpRequested As HelpEventHandler |
C# | |
---|
[SRCategoryAttribute("Behavior")]
[SRDescriptionAttribute("Occurs when the user invokes Help for the control.")]
public event HelpEventHandler HelpRequested |
C++/CLI | |
---|
[SRCategoryAttribute("Behavior")]
[SRDescriptionAttribute("Occurs when the user invokes Help for the control.")]
public:
event HelpEventHandler^ HelpRequested |
Event Data
The event handler receives an argument of type HelpEventArgs containing data related to this event. The following HelpEventArgs properties provide information specific to this event.
Property | Description |
---|
Handled | Gets or sets a value indicating whether the help event was handled. |
MousePos | Gets the screen coordinates of the mouse pointer. |
Requirements
Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7
See Also