IVsHelpProvider Interface
Visual Studio 2015
Implement this interface to override the default help experience.
Assembly: Microsoft.VisualStudio.Shell.Interop.10.0 (in Microsoft.VisualStudio.Shell.Interop.10.0.dll)
| Name | Description | |
|---|---|---|
![]() | DisplayTopic(Array, Array) | Displays the help topic for the given context |
This is most appropriate for Isolated Shell applications which don't want Visual Studio help to appear.To register as a Help Provider, add the following registration with a pkgdef file:
[$RootKey$\HelpProviders]@="<HelpProviderServiceGUID>" [$RootKey$\HelpProviders\<HelpProviderServiceGUID>]@="<Help Provider Name>" Name="<resourceID>" Package="<HelpProviderPackageGUID>"
The Name and Package values indicate the resource ID and VS Package for the Help Provider's localized name.Updating the HelpProviders key Default value to the new Help Provider Service GUID sets the new help provider as the default.Users may override the default help provider by setting a CurrentHelpProvider preference through T:Microsoft.VisualStudio.Shell.Interop.IVsSettingStore:
[SettingsScope_UserSettings\Help] CurrentHelpProvider="<preferred Help Provider Service GUID>"
Show:
