<list><listheader> 설명서 태그

<listheader> 블록은 테이블 또는 정의 목록의 머리글 행을 정의하는 데 사용됩니다. 테이블을 정의할 때는 머리글에 용어 항목만 제공하면 됩니다.

구문

<list type="bullet" | "number" | "table">
   <listheader>
      <term>term</term>
      <description>description</description>
   </listheader>
   <item>
      <term>term</term>
      <description>description</description>
   </item>
</list>

매개 변수

term
description에서 정의되는, 정의할 용어입니다.

description
글머리 기호 또는 번호 매기기 목록의 항목이나 term의 정의입니다.

설명

목록의 각 항목은 <item> 블록을 사용하여 지정됩니다. 정의 목록을 만들 때는 termdescription을 모두 지정해야 합니다. 그러나 테이블, 글머리 기호 목록 또는 번호 매기기 목록의 경우 description 항목만 제공하면 됩니다.

목록 또는 테이블에 <item> 블록을 필요한 개수만큼 포함할 수 있습니다.

/doc 파일에 대한 설명서 주석을 처리하기 위해 컴파일합니다.

예시

// xml_list_tag.cpp
// compile with: /doc /LD
// post-build command: xdcmake xml_list_tag.dll
/// <remarks>Here is an example of a bulleted list:
/// <list type="bullet">
/// <item>
/// <description>Item 1.</description>
/// </item>
/// <item>
/// <description>Item 2.</description>
/// </item>
/// </list>
/// </remarks>
class MyClass {};

참고 항목

XML 설명서