HtmlTextWriter.RenderBeforeTag 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
태그 요소의 여는 태그 앞에 있는 텍스트나 공백을 씁니다.
protected:
virtual System::String ^ RenderBeforeTag();
protected virtual string RenderBeforeTag ();
abstract member RenderBeforeTag : unit -> string
override this.RenderBeforeTag : unit -> string
Protected Overridable Function RenderBeforeTag () As String
반환
태그 요소의 여는 태그 앞에 있는 쓸 텍스트나 공백입니다. 재정의되지 않으면 null
입니다.
예제
다음 코드 예제에서는 메서드를 재정의 RenderBeforeTag 하여 클래스에서 HtmlTextWriter 파생된 클래스가 요소를 렌더링 <label>
하려고 하는지 여부를 확인하는 방법을 보여 있습니다. 이 경우 재정의는 RenderBeforeTag 요소 바로 앞에 요소의 여는 <font>
태그를 <label>
삽입합니다. 요소를 렌더링 <label>
하지 않으면 기본 메서드가 RenderBeforeTag 사용됩니다.
// Override the RenderBeforeTag method to add the
// opening tag of a Font element before the
// opening tag of any Label elements rendered by this
// custom markup writer.
virtual String^ RenderBeforeTag() override
{
// Compare the TagName property value to the
// String* label to determine whether the element to
// be rendered is a Label. If it is a Label,
// the opening tag of the Font element, with a Color
// style attribute set to red, is added before
// the Label.
if ( String::Compare( TagName, "label" ) == 0 )
{
return "<font color=\"red\">";
}
// If a Label is not being rendered, use
// the base RenderBeforeTag method.
else
{
return __super::RenderBeforeTag();
}
}
// Override the RenderBeforeTag method to add the
// opening tag of a Font element before the
// opening tag of any Label elements rendered by this
// custom markup writer.
protected override string RenderBeforeTag()
{
// Compare the TagName property value to the
// string label to determine whether the element to
// be rendered is a Label. If it is a Label,
// the opening tag of the Font element, with a Color
// style attribute set to red, is added before
// the Label.
if (String.Compare(TagName, "label") == 0)
{
return "<font color=\"red\">";
}
// If a Label is not being rendered, use
// the base RenderBeforeTag method.
else
{
return base.RenderBeforeTag();
}
}
' Override the RenderBeforeTag method to add the
' opening tag of a Font element before the
' opening tag of any Label elements rendered by this
' custom markup writer.
Protected Overrides Function RenderBeforeTag() As String
' Compare the TagName property value to the
' string label to determine whether the element to
' be rendered is a Label. If it is a Label,
' the opening tag of the Font element, with a Color
' style attribute set to red, is added before
' the Label.
If String.Compare(TagName, "label") = 0 Then
Return "<font color=""red"">"
' If a Label is not being rendered, use
' the base RenderBeforeTag method.
Else
Return MyBase.RenderBeforeTag()
End If
End Function 'RenderBeforeTag
설명
이 메서드는 의도한 요소의 여는 RenderBeforeTag 태그 앞에 추가 여는 태그를 렌더링하려는 경우에 유용할 수 있습니다.
상속자 참고
메서드의 클래스 구현이 HtmlTextWriter RenderBeforeTag() 반환됩니다 null
. 요소 열기 태그보다 먼저 텍스트 또는 간격을 쓰려는 경우 재정 RenderBeforeTag() 의합니다.