IHelp::GetHelpInfo Method (UInt32)
Visual Studio 2015
Gets information about the context of the help request.
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Parameters
- pdwHelpInfo
-
Type:
System::UInt32
[out] A set of bit flags. Most commonly used to indicate whether or not "What's This" Help mode is active.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From objtext.idl:
HRESULT IHelp::GetHelpInfo( [out] DWORD* pdwHelpInfo );
To test for "What's This" Help mode, bit-and the parameter set by GetHelpInfo with the constant HELPINFO_WHATS_THIS_MODE_ON.
Show: