共用方式為


<list> (Visual Basic)

定義清單或資料表。

語法

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

參數

type
清單的類型。 必須是項目符號清單的「項目符號」、編號清單的「數字」,或是兩欄資料表的「資料表」。

term
只有在 type 是「資料表」時才使用。要定義的字詞,定義於描述標籤中。

description
type 為「項目符號」或「數字」時,description 是清單中的項目,當 type 為「資料表」時,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

另請參閱