다음을 통해 공유


<list> (Visual Basic)

목록 또는 테이블을 정의합니다.

문법

<list type="type">  
   <listheader>  
      <term>term</term>  
      <description>description</description>  
   </listheader>  
   <item>  
      <term>term</term>  
      <description>description</description>  
   </item>  
</list>  

매개 변수

type
목록의 형식입니다. 글머리 기호 목록의 "글머리 기호", 번호 매기기 목록의 경우 "number" 또는 두 열 테이블의 "테이블"이어야 합니다.

term
"table"인 경우에만 사용됩니다 type . 정의할 용어로, 설명 태그에 정의됩니다.

description
type"bullet" 또는 "number"가 "table" description 인 경우 목록 type 의 항목인 경우는 "table" descriptionterm정의입니다.

비고

블록은 <listheader> 테이블 또는 정의 목록의 제목을 정의합니다. 테이블을 정의할 때 제목에 대한 term 항목만 제공해야 합니다.

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

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

-doc를 사용하여 컴파일하여 파일에 대한 설명서 주석을 처리합니다.

예시

이 예제에서는 태그를 <list> 사용하여 설명 섹션에서 글머리 기호 목록을 정의합니다.

''' <remarks>Before calling the <c>Reset</c> method, be sure to:
''' <list type="bullet">
''' <item><description>Close all connections.</description></item>
''' <item><description>Save the object state.</description></item>
''' </list>
''' </remarks>
Public Sub Reset()
    ' Code goes here.
End Sub

참고하십시오