<para> (Visual Basic)
Určuje, že obsah je formátována jako odstavec.
<para>content</para>
Parametry
- content
Text odstavce.
Poznámky
<para> Je označení pro použití uvnitř značky, například <summary> (Visual Basic), <remarks> (Visual Basic), nebo <returns> (Visual Basic)a umožňuje přidat strukturu textu.
Kompilace s /doc na komentáře k dokumentaci procesu do souboru.
Příklad
V tomto příkladu <para> tag v části poznámky pro rozdělení UpdateRecord metoda do dvou odstavců.
''' <param name="id">The ID of the record to update.</param>
''' <remarks>Updates the record <paramref name="id"/>.
''' <para>Use <see cref="DoesRecordExist"/> to verify that
''' the record exists before calling this method.</para>
''' </remarks>
Public Sub UpdateRecord(ByVal id As Integer)
' Code goes here.
End Sub
''' <param name="id">The ID of the record to check.</param>
''' <returns><c>True</c> if <paramref name="id"/> exists,
''' <c>False</c> otherwise.</returns>
''' <remarks><seealso cref="UpdateRecord"/></remarks>
Public Function DoesRecordExist(ByVal id As Integer) As Boolean
' Code goes here.
End Function
Viz také
Referenční dokumentace
Doporučené značky XML pro komentáře k dokumentaci (Visual Basic)