Html32TextWriter.RenderBeforeContent 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
HTML 요소의 내용 앞에 있는 탭 공백이나 글꼴 정보를 씁니다.
protected:
override System::String ^ RenderBeforeContent();
protected override string RenderBeforeContent ();
override this.RenderBeforeContent : unit -> string
Protected Overrides Function RenderBeforeContent () As String
반환
HTML 요소의 내용을 렌더링하기 전에 쓸 글꼴 정보 또는 공백이거나, 렌더링할 해당 정보가 없으면 null
입니다.
예제
다음 코드 예제에서는 메서드를 재정의하는 방법을 보여 줍니다 RenderBeforeContent . 코드 검사 하는지 여부를 th
요소는 렌더링 되 고 사용 하 여는 SupportsBold 요청 하는 디바이스에 굵은 글꼴 서식을 표시할 수 있는지 여부를 확인 하는 메서드. 디바이스에서 굵은 글꼴을 지원 합니다 RenderBeforeContent 메서드는 여는 태그를 씁니다는 b
요소입니다. 디바이스에서 굵은 글꼴을 지원 하지 않는 경우는 RenderBeforeContent 메서드는 여는 태그를 씁니다를 font
요소를 color
특성 빨강의 16 진수 값으로 설정 합니다.
다음으로 각 방법을 확인 여부를 h4
요소는 렌더링 되 고 사용 하 여를 SupportsItalic 요청한 디바이스에서 기울임꼴 글꼴을 표시할 수 있는지 여부를 확인할 속성입니다. 디바이스에서 기울임꼴 서식을 지원 합니다 RenderBeforeContent 메서드는 여는 태그를 씁니다는 i
요소입니다. 디바이스에서 기울임꼴 서식을 지원 하지 않는 경우는 RenderBeforeContent 메서드는 여는 태그를 씁니다를 font
요소를 color
특성이 navy 파란색의 16 진수 값으로 설정 합니다.
이 코드 예제는에 대해 제공 된 큰 예제의 일부는 Html32TextWriter 클래스입니다.
// Override the RenderBeforeContent method to render
// styles before rendering the content of a <th> element.
protected override string RenderBeforeContent()
{
// Check the TagKey property. If its value is
// HtmlTextWriterTag.TH, check the value of the
// SupportsBold property. If true, return the
// opening tag of a <b> element; otherwise, render
// the opening tag of a <font> element with a color
// attribute set to the hexadecimal value for red.
if (TagKey == HtmlTextWriterTag.Th)
{
if (SupportsBold)
return "<b>";
else
return "<font color=\"FF0000\">";
}
// Check whether the element being rendered
// is an <H4> element. If it is, check the
// value of the SupportsItalic property.
// If true, render the opening tag of the <i> element
// prior to the <H4> element's content; otherwise,
// render the opening tag of a <font> element
// with a color attribute set to the hexadecimal
// value for navy blue.
if (TagKey == HtmlTextWriterTag.H4)
{
if (SupportsItalic)
return "<i>";
else
return "<font color=\"000080\">";
}
// Call the base method.
return base.RenderBeforeContent();
}
' Override the RenderBeforeContent method to render
' styles before rendering the content of a <th> element.
Protected Overrides Function RenderBeforeContent() As String
' Check the TagKey property. If its value is
' HtmlTextWriterTag.TH, check the value of the
' SupportsBold property. If true, return the
' opening tag of a <b> element; otherwise, render
' the opening tag of a <font> element with a color
' attribute set to the hexadecimal value for red.
If TagKey = HtmlTextWriterTag.Th Then
If (SupportsBold) Then
Return "<b>"
Else
Return "<font color=""FF0000"">"
End If
End If
' Check whether the element being rendered
' is an <H4> element. If it is, check the
' value of the SupportsItalic property.
' If true, render the opening tag of the <i> element
' prior to the <H4> element's content; otherwise,
' render the opening tag of a <font> element
' with a color attribute set to the hexadecimal
' value for navy blue.
If TagKey = HtmlTextWriterTag.H4 Then
If (SupportsItalic) Then
Return "<i>"
Else
Return "<font color=""000080"">"
End If
End If
' Call the base method.
Return MyBase.RenderBeforeContent()
End Function