다음을 통해 공유


Html32TextWriter.RenderBeforeTag 메서드

정의

HTML 요소의 여는 태그 앞에 있는 텍스트나 탭 공백을 HTML 3.2 출력 스트림에 씁니다.

protected:
 override System::String ^ RenderBeforeTag();
protected override string RenderBeforeTag ();
override this.RenderBeforeTag : unit -> string
Protected Overrides Function RenderBeforeTag () As String

반환

String

태그 앞에 있는 렌더링할 HTML 글꼴 및 공백 정보이거나, 렌더링할 해당 정보가 없으면 null입니다.

예제

다음 코드 예제에서는 메서드를 재정의하는 방법을 보여 줍니다 RenderBeforeTag . 코드는 요소가 렌더링되고 있는지 여부를 a 확인합니다. 이 경우 재정의된 RenderBeforeTag 메서드는 요소의 여는 태그를 small 씁니다. 샘플 RenderAfterTag 은 요소에 대해 a 동일한 검사를 수행한 다음 요소의 닫는 태그를 small 작성합니다.

이 코드 예제는에 대해 제공 된 큰 예제의 일부는 Html32TextWriter 클래스입니다.

// Override the RenderBeforeTag method to render the
// opening tag of a <small> element to modify the text size of 
// any <a> elements that this writer encounters.
protected override string RenderBeforeTag()
{
    // Check whether the element being rendered is an 
    // <a> element. If so, render the opening tag
    // of the <small> element; otherwise, call the base method.
    if (TagKey == HtmlTextWriterTag.A)
        return "<small>";
    return base.RenderBeforeTag();
}
' Override the RenderBeforeTag method to render the
' opening tag of a <small> element to modify the text size of 
' any <a> elements that this writer encounters.
Protected Overrides Function RenderBeforeTag() As String
    ' Check whether the element being rendered is an 
    ' <a> element. If so, render the opening tag
    ' of the <small> element; otherwise, call the base method.
    If TagKey = HtmlTextWriterTag.A Then
        Return "<small>"
    End If
    Return MyBase.RenderBeforeTag()
End Function

적용 대상

추가 정보