Html32TextWriter.RenderAfterContent 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
HTML 요소의 내용 뒤에 나타나는 텍스트나 공백을 씁니다.
protected:
override System::String ^ RenderAfterContent();
protected override string RenderAfterContent ();
override this.RenderAfterContent : unit -> string
Protected Overrides Function RenderAfterContent () As String
반환
HTML 요소의 내용 뒤에 쓸 공백 또는 텍스트이거나, 렌더링할 해당 정보가 없으면 null
입니다.
예제
다음 코드 예제에서는 메서드를 재정의하는 방법을 보여 줍니다 RenderAfterContent . 메서드는 첫 번째 확인 여부 재정의 각를 th
요소는 렌더링 되 고 사용 하 여는 SupportsBold 요청 하는 디바이스에 굵은 글꼴 서식을 표시할 수 있는지 여부를 확인 하는 메서드. 디바이스에서 굵은 글꼴을 지원 합니다 RenderAfterContent 메서드가 닫는 태그를 씁니다는 b
요소입니다. 디바이스에서 굵은 글꼴을 지원 하지 않는 경우는 RenderAfterContent 의 닫는 태그를 작성 하는 메서드를 font
요소.
다음을 확인 여부를 h4
요소는 렌더링 되 고 사용 하 여는 SupportsItalic 요청한 디바이스에서 기울임꼴 글꼴을 표시할 수 있는지 여부를 확인할 속성입니다. 디바이스에서 기울임꼴 서식을 지원 합니다 RenderAfterContent 의 닫는 태그를 작성 하는 메서드는 i
요소. 디바이스에서 기울임꼴 서식을 지원 하지 않는 경우는 RenderAfterContent 의 닫는 태그를 작성 하는 메서드를 font
요소.
이 코드 예제는에 대해 제공 된 큰 예제의 일부는 Html32TextWriter 클래스입니다.
// Override the RenderAfterContent method to close
// styles opened during the call to the RenderBeforeContent
// method.
protected override string RenderAfterContent()
{
// Check whether the element being rendered is a <th> element.
// If so, and the requesting device supports bold formatting,
// render the closing tag of the <b> element. If not,
// render the closing tag of the <font> element.
if (TagKey == HtmlTextWriterTag.Th)
{
if (SupportsBold)
return "</b>";
else
return "</font>";
}
// Check whether the element being rendered is an <H4>.
// element. If so, and the requesting device supports italic
// formatting, render the closing tag of the <i> element.
// If not, render the closing tag of the <font> element.
if (TagKey == HtmlTextWriterTag.H4)
{
if (SupportsItalic)
return "</i>";
else
return "</font>";
}
// Call the base method
return base.RenderAfterContent();
}
' Override the RenderAfterContent method to close
' styles opened during the call to the RenderBeforeContent
' method.
Protected Overrides Function RenderAfterContent() As String
' Check whether the element being rendered is a <th> element.
' If so, and the requesting device supports bold formatting,
' render the closing tag of the <b> element. If not,
' render the closing tag of the <font> element.
If TagKey = HtmlTextWriterTag.Th Then
If SupportsBold Then
Return "</b>"
Else
Return "</font>"
End If
End If
' Check whether the element being rendered is an <H4>.
' element. If so, and the requesting device supports italic
' formatting, render the closing tag of the <i> element.
' If not, render the closing tag of the <font> element.
If TagKey = HtmlTextWriterTag.H4 Then
If (SupportsItalic) Then
Return "</i>"
Else
Return "</font>"
End If
End If
' Call the base method.
Return MyBase.RenderAfterContent()
End Function