Freigeben über


helpstringcontext-Attribut

Das [helpstringcontext] -Attribut gibt einen 32-Bit-Hilfekontextbezeichner in der Hilfedatei an. Sie können das [helpstringcontext] -Attribut auf library, interface, dispinterface, module, coclass, typedef-Anweisungen , Properties, Parameter und Methoden anwenden.

[  helpstringcontext(contextid)[, optional-attribute-list]] idl-statement

Parameter

Contextid

Eine eindeutige ganze Zahl, die den Hilfetext identifiziert, der der aktuellen MIDL-Anweisung zugeordnet ist.

optional-attribute-list

Null oder mehr MIDL-Attribute.

idl-anweisung

Die MIDL-Anweisung, auf die das [helpstringcontext] -Attribut angewendet wird.

Bemerkungen

Verwenden Sie die GetDocumentation2-Funktionen in den Schnittstellen ITypeLib2 und ITypeInfo2 , um die Hilfezeichenfolge abzurufen.

Beispiele

[
    uuid(. . .),
    helpstringcontext(103),
    version(1.0)
]
library Lines
{
    [
        uuid(. . .), 
        helpstringcontext(102),
        oleautomation,
        dual
    ]
    interface ILine : IDispatch
    {
        [propget, helpstringcontext(100)] HRESULT Color([out, retval] long* ReturnVal); 
        [propput, helpstringcontext(101)] HRESULT Color([in] long rgb);
    }
};