Purpose
Returns a help ID to MapBasic. Reserved procedure called automatically from the Ribbon SDK.
Type: MapBasic Sub (reserved)
Description
While a ribbon instance is available the F1 key ist active for your own controls. Press F1 and the reserved help routine catches the help ID. The help Id is a standard property of a control, defined with the Ribbon Designer.
Example
Declare Sub ShowHelp(ByVal helpId as String)
'******************************
Sub ShowHelp(ByVal helpId as String)
'call your own help system or open a Id specific file. What ever you want.
note helpId
End Sub