helpstring 특성

[helpstring] 특성은 적용되는 요소를 설명하는 데 사용되는 문자열을 지정합니다. 라이브러리, importlib, 인터페이스, dispinterface, 모듈 또는 coclass 문, typedefs, 속성 및 메서드에 [helpstring] 특성을 적용할 수 있습니다.

[
    helpstring(help-text-string)
    [, optional-attribute-list]
] 
element element-name
{
    definition
}

[idl-statement, helpstring(help-text-string)]

매개 변수

help-text-string

도움말 텍스트를 포함하는 문자의 0으로 끝나는 문자열입니다.

optional-attribute-list

0개 이상의 MIDL 특성 문입니다.

요소

다음 지시문 중 하나: library, [importlib], interface, dispinterface, module, typedef, method, property 또는 coclass.

element-name

다른 소프트웨어 구성 요소가 현재 요소를 구분하는 데 사용할 수 있는 이름입니다.

정의

요소 정의를 구성하는 문을 지정합니다.

idl-statement

propget 또는 propput과 같은 MIDL 인터페이스 정의 문입니다.

설명

ITypeLibITypeInfo 인터페이스의 GetDocumentation 함수를 사용하여 도움말 문자열을 검색합니다.

[
    uuid(1e196b20-1f3c-1069-996b-00dd010fe676),
    helpstring("Lines 1.0 Type Library"),
    version(1.0)
]
library Lines
{
     [
         uuid(1e123456-1f3c-1069-996b-00dd010fe676), 
         helpstring("Line object."),
         oleautomation,
         dual
     ]
     interface ILine : IDispatch                         
     {
         [propget, helpstring("Returns and sets RGB color.")]
         HRESULT Color([out, retval] long* ReturnVal); 
         [propput, helpstring("Returns and sets RGB color.")]
         HRESULT Color([in] long rgb);
     }
};

참고 항목

라이브러리

importlib

인터페이스

Dispinterface

모듈

coclass

Typedef

ODL 파일 구문

ODL 파일 예제

MIDL을 사용하여 형식 라이브러리 생성