다음을 통해 공유


<para> (Visual Basic)

콘텐츠의 서식이 단락으로 지정되도록 지정합니다.

문법

<para>content</para>  

매개 변수

content
단락의 텍스트입니다.

비고

<para> 태그는 <summary>, <remarks>, <returns> 등의 태그 내에 사용되어 텍스트에 구조를 추가할 수 있게 합니다.

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

예시

이 예제에서는 태그를 <para> 사용하여 메서드의 설명 섹션을 UpdateRecord 두 단락으로 분할합니다.

''' <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

참고하십시오