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