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
属性设置为红色的十六进制值。
接下来,每个方法检查元素是否 h4
正在呈现,然后使用 SupportsItalic 属性检查请求的设备是否可以显示斜体格式。 如果设备支持斜体格式,该方法 RenderBeforeContent 将写入元素的 i
开始标记。 如果设备不支持斜体格式,该方法 RenderBeforeContent 将写入元素的 font
开始标记,其 color
属性设置为海军蓝的十六进制值。
此代码示例是为 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