Jump to a class in API reference #978
|
My application exposes a lot of classes via TreeViews and PropertyGrid to the user. When hitting F1/Help, I want to redirect to the API reference documentation in a CHM file for that class. My questions are:
|
Answered by
EWSoftware
Mar 7, 2023
Replies: 2 comments 2 replies
|
I used to have a help 1 file for SHFB and used the topic GUIDs when launching the viewer adding on an optional anchor for the section ID if necessary. Help.ShowHelp(form, path, HelpNavigator.Topic, "html/" + topic + ".htm" + anchor)The GUIDs are actually MD5 hashes of the topic IDs in GUID form so they are constant. |
1 reply
Answer selected by
graealex
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I used to have a help 1 file for SHFB and used the topic GUIDs when launching the viewer adding on an optional anchor for the section ID if necessary.
The GUIDs are actually MD5 hashes of the topic IDs in GUID form so they are constant.