The WebBrowser module
The WebBrowser module can be used to add HTML-based help to a plug-in such as a custom member . To access documentation that is available for the WebBrowser module, you can use the built-in Python functions dir() and help() .
SDS2 Python Prompt |
>>> import WebBrowser # import the module
Open(...)
>>> help(WebBrowser.OpenHelp) # get help on OpenHelp function
OpenHelp(...)
|