HtmlTextWriter.TagName Właściwość
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Pobiera lub ustawia nazwę tagu renderowanego elementu znaczników.
protected:
property System::String ^ TagName { System::String ^ get(); void set(System::String ^ value); };
protected string TagName { get; set; }
member this.TagName : string with get, set
Protected Property TagName As String
Wartość właściwości
Nazwa tagu renderowanego elementu znaczników.
Przykłady
Poniższy przykład kodu przedstawia przesłoniętą wersję RenderBeforeTag metody w klasie pochodzącej HtmlTextWriter z klasy. Przykład kodu sprawdza, czy element do renderowania jest elementem <label>
, wywołując String.Compare metodę, a następnie przekazując TagName wartość właściwości i ciąg , "label"
jako argumenty parametrów.
<label>
Jeśli element ma zostać renderowany, tag <font>
otwierający elementu z atrybutem ustawionym color
na red
, jest renderowany przed <label>
tagiem otwierania elementu. Jeśli element do renderowania nie jest elementem <label>
, wywoływana jest wersja klasy bazowej RenderBeforeTag metody.
// Override the RenderBeforeTag method to add the
// opening tag of a Font element before the
// opening tag of any Label elements rendered by this
// custom markup writer.
virtual String^ RenderBeforeTag() override
{
// Compare the TagName property value to the
// String* label to determine whether the element to
// be rendered is a Label. If it is a Label,
// the opening tag of the Font element, with a Color
// style attribute set to red, is added before
// the Label.
if ( String::Compare( TagName, "label" ) == 0 )
{
return "<font color=\"red\">";
}
// If a Label is not being rendered, use
// the base RenderBeforeTag method.
else
{
return __super::RenderBeforeTag();
}
}
// Override the RenderBeforeTag method to add the
// opening tag of a Font element before the
// opening tag of any Label elements rendered by this
// custom markup writer.
protected override string RenderBeforeTag()
{
// Compare the TagName property value to the
// string label to determine whether the element to
// be rendered is a Label. If it is a Label,
// the opening tag of the Font element, with a Color
// style attribute set to red, is added before
// the Label.
if (String.Compare(TagName, "label") == 0)
{
return "<font color=\"red\">";
}
// If a Label is not being rendered, use
// the base RenderBeforeTag method.
else
{
return base.RenderBeforeTag();
}
}
' Override the RenderBeforeTag method to add the
' opening tag of a Font element before the
' opening tag of any Label elements rendered by this
' custom markup writer.
Protected Overrides Function RenderBeforeTag() As String
' Compare the TagName property value to the
' string label to determine whether the element to
' be rendered is a Label. If it is a Label,
' the opening tag of the Font element, with a Color
' style attribute set to red, is added before
' the Label.
If String.Compare(TagName, "label") = 0 Then
Return "<font color=""red"">"
' If a Label is not being rendered, use
' the base RenderBeforeTag method.
Else
Return MyBase.RenderBeforeTag()
End If
End Function 'RenderBeforeTag
Uwagi
Właściwość TagName jest używana tylko do klas dziedziczynych z HtmlTextWriter klasy. Należy odczytać lub ustawić TagName właściwość tylko w RenderBeginTag wywołaniach metody. Jest to jedyny czas, w którym jest ustawiona wartość spójna.