[This is preliminary documentation and subject to change.]
Retrieves an object's Help property string.
HRESULT get_accHelp(
VARIANT varChild,
BSTR *pszHelp
);
Returns S_OK if successful or one of the following values or a standard COM error code otherwise.
DISP_E_MEMBERNOTFOUND |
E_INVALIDARG |
An object's Help property is represented in the form of a string that provides some helpful text to associate with the specified object. You can use this helpful text to provide a description of what the object does; contrast this with the Description property, which describes what an object looks like.
Note to implementers Objects need not support both the IAccessible::get_accHelp and IAccessible::get_accHelpTopic functions, but should support at least one. That is, if they can easily return a string they should support get_accHelp, otherwise they should support get_accHelpTopic. If both are supported, the object need not yield identical information.
Localize this property.
Developers of both servers and clients should be aware that getting information from a Help file might be expensive in terms of time and memory.
VARIANT Structure