Html32TextWriter.RenderBeforeContent Метод
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Записывает любые пробелы табуляции или информацию о шрифте, появляющиеся перед содержимым в элементе 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 метод записывает открывающий тег элемента с атрибутомcolor
, установленным в шестнадцатеричное значение для темно-синего font
цвета.
Этот пример кода является частью более крупного примера, предоставленного 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