Using the identifier string for a GUI element given by the Contextual Help Manager displays the associated contextual help. This could be a WebWorks webpage, a Internet webpage or even a local file.
FUNCTION DisplayContextualHelp(Identifier : STRING): BOOLEAN;def vs.DisplayContextualHelp(Identifier):
return BOOLEAN| Name | Type | Description |
|---|---|---|
| Identifier | STRING |
BEGIN
hasHelp := DisplayContextualHelp('net.nemetschek.help.382507DD-8AF6-11E1-B127-842B2B9AB9E0');
END;
BEGIN
hasHelp := DisplayContextualHelp('net.nemetschek.help.7688AB4D-8AF5-11E1-B127-842B2B9AB9E0');
END;
BEGIN
hasHelp := DisplayContextualHelp('net.nemetschek.help.3C191F5F-8AF7-11E1-B127-842B2B9AB9E0');
END;import vs
# Using the identifier string for a GUI element given by the Contextual Help
# Manager displays the associated contextual help.
Identifier = 'Example'
ok = vs.DisplayContextualHelp(Identifier)
if ok:
vs.Message('DisplayContextualHelp succeeded')
else:
vs.Message('DisplayContextualHelp failed')Availability: from VectorWorks12.0