Html32TextWriter.RenderAfterTag 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
HTML 요소의 닫는 태그 다음에 있는 공백이나 텍스트를 씁니다.
protected:
override System::String ^ RenderAfterTag();
protected override string RenderAfterTag ();
override this.RenderAfterTag : unit -> string
Protected Overrides Function RenderAfterTag () As String
반환
HTML 요소의 닫는 태그 뒤에 쓸 공백 또는 텍스트이거나, 렌더링할 해당 정보가 없으면 null
입니다.
예제
다음 코드 예제에서는 메서드를 재정의하는 방법을 보여 줍니다 RenderAfterTag . 코드는 요소가 렌더링되고 있는지 여부를 a
확인합니다. 이 경우 메서드는 RenderAfterTag 요소의 닫는 태그를 small
씁니다. 메서드에 RenderBeforeTag 대한 예제는 요소에 대해 a
동일한 검사를 수행한 다음 요소의 여는 태그를 small
씁니다.
이 코드 예제는에 대해 제공 된 큰 예제의 일부는 Html32TextWriter 클래스입니다.
// Override the RenderAfterTag method to render
// close any elements opened in the RenderBeforeTag
// method call.
protected override string RenderAfterTag()
{
// Check whether the element being rendered is an
// <a> element. If so, render the closing tag of the
// <small> element; otherwise, call the base method.
if (TagKey == HtmlTextWriterTag.A)
return "</small>";
return base.RenderAfterTag();
}
' Override the RenderAfterTag method to render
' close any elements opened in the RenderBeforeTag
' method call.
Protected Overrides Function RenderAfterTag() As String
' Check whether the element being rendered is an
' <a> element. If so, render the closing tag of the
' <small> element; otherwise, call the base method.
If TagKey = HtmlTextWriterTag.A Then
Return "</small>"
End If
Return MyBase.RenderAfterTag()
End Function