--- title: "helpstringcontext | Microsoft Docs" ms.custom: "" ms.date: "11/04/2016" ms.reviewer: "" ms.suite: "" ms.technology: - "cpp-windows" ms.tgt_pltfrm: "" ms.topic: "language-reference" f1_keywords: - "vc-attr.helpstringcontext" dev_langs: - "C++" helpviewer_keywords: - "helpstringcontext attribute [C++]" ms.assetid: d4cd135e-d91c-4aa3-9353-8aeb096f52cf caps.latest.revision: 10 author: "mikeblome" ms.author: "mblome" manager: "ghogen" translation.priority.ht: - "cs-cz" - "de-de" - "es-es" - "fr-fr" - "it-it" - "ja-jp" - "ko-kr" - "pl-pl" - "pt-br" - "ru-ru" - "tr-tr" - "zh-cn" - "zh-tw" --- # helpstringcontext Specifies the ID of a help topic in an .hlp or .chm file. ## Syntax ``` [ helpstringcontext( contextID ) ] ``` #### Parameters `contextID` A 32-bit Help context identifier in the Help file. ## Remarks The **helpstringcontext** C++ attribute has the same functionality as the [helpstringcontext](http://msdn.microsoft.com/library/windows/desktop/aa366858) ODL attribute. ## Example ``` // cpp_attr_ref_helpstringcontext.cpp // compile with: /LD #include [module(name="MyLib")]; [ object, helpstring("help string"), helpstringcontext(1), uuid="11111111-1111-1111-1111-111111111111" ] __interface IMyI { HRESULT xx(); }; ``` ## Requirements ### Attribute Context ||| |-|-| |**Applies to**|**class**, `interface`, interface method| |**Repeatable**|No| |**Required attributes**|None| |**Invalid attributes**|None| For more information, see [Attribute Contexts](../windows/attribute-contexts.md). ## See Also [IDL Attributes](../windows/idl-attributes.md) [Interface Attributes](../windows/interface-attributes.md) [Class Attributes](../windows/class-attributes.md) [Method Attributes](../windows/method-attributes.md) [module](../windows/module-cpp.md)