HtmlTextWriter.TagKey Свойство
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Возвращает или задает значение HtmlTextWriterTag для указанного элемента разметки.
protected:
property System::Web::UI::HtmlTextWriterTag TagKey { System::Web::UI::HtmlTextWriterTag get(); void set(System::Web::UI::HtmlTextWriterTag value); };
protected System.Web.UI.HtmlTextWriterTag TagKey { get; set; }
member this.TagKey : System.Web.UI.HtmlTextWriterTag with get, set
Protected Property TagKey As HtmlTextWriterTag
Значение свойства
Элемент разметки с визуализированным открывающим тегом.
Исключения
Не удается установить значение свойства.
Примеры
В следующем примере кода демонстрируется переопределенная версия RenderBeforeContent метода в классе, производном от HtmlTextWriter класса . Он использует значение свойства , TagKey чтобы определить, является ли серверный элемент управления, использующий пользовательский HtmlTextWriter объект, отрисовывая <label>
элемент разметки. Если это так, <font>
то возвращается элемент с атрибутом color
, равным red
, чтобы изменить форматирование <label>
текста элемента.
// Override the RenderBeforeContent method to write
// a font element that applies red to the text in a Label element.
virtual String^ RenderBeforeContent() override
{
// Check to determine whether the element being rendered
// is a label element. If so, render the opening tag
// of the font element; otherwise, call the base method.
if ( TagKey == HtmlTextWriterTag::Label )
{
return "<font color=\"red\">";
}
else
{
return __super::RenderBeforeContent();
}
}
// Override the RenderBeforeContent method to write
// a font element that applies red to the text in a Label element.
protected override string RenderBeforeContent()
{
// Check to determine whether the element being rendered
// is a label element. If so, render the opening tag
// of the font element; otherwise, call the base method.
if (TagKey == HtmlTextWriterTag.Label)
{
return "<font color=\"red\">";
}
else
{
return base.RenderBeforeContent();
}
}
' Override the RenderBeforeContent method to write
' a font element that applies red to the text in a Label element.
Protected Overrides Function RenderBeforeContent() As String
' Check to determine whether the element being rendered
' is a label element. If so, render the opening tag
' of the font element; otherwise, call the base method.
If TagKey = HtmlTextWriterTag.Label Then
Return "<font color=""red"">"
Else
Return MyBase.RenderBeforeContent()
End If
End Function 'RenderBeforeContent
Комментарии
Свойство TagKey используется только для классов, наследующих HtmlTextWriter от класса . Свойство следует считывать или задавать TagKey только при вызове RenderBeginTag метода . Это единственный раз, когда оно задается в согласованное значение.