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 метода . Это единственный раз, когда оно задается в согласованное значение.

Применяется к

См. также раздел