HelpProviderShowHelpTopic Method

Show a help topic in the online CHM style help.

Definition

Namespace: MbcsCentral
Assembly: MbcsCentral (in MbcsCentral.exe) Version: 2.0.1.15 (2.0.1.15)
C#
public static void ShowHelpTopic(
	string helpTopic
)

Parameters

helpTopic  String
The help topic to show. This must match exactly with the name of one of the help topic's .htm files, without the .htm extention and with spaces instead of underscores in the name. For instance, to display the help topic "This_is_my_topic.htm", pass the string "This is my topic".

Remarks

You can also pass in the help topic with the underscore replacement already done. You can also add the .htm extension. Certain characters other than spaces are replaced by underscores in RoboHelp help topic names. This method does not yet account for all those replacements, so if you really need to find a help topic with one or more of those characters, do the underscore replacement before passing the topic.

See Also