HtmlTextWriter.GetStyleName(HtmlTextWriterStyle) Metoda
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.
Uzyskuje nazwę atrybutu stylu znaczników skojarzone z określoną HtmlTextWriterStyle wartością wyliczenia.
protected:
System::String ^ GetStyleName(System::Web::UI::HtmlTextWriterStyle styleKey);
protected string GetStyleName (System.Web.UI.HtmlTextWriterStyle styleKey);
member this.GetStyleName : System.Web.UI.HtmlTextWriterStyle -> string
Protected Function GetStyleName (styleKey As HtmlTextWriterStyle) As String
Parametry
- styleKey
- HtmlTextWriterStyle
Aby HtmlTextWriterStyle uzyskać nazwę atrybutu stylu dla.
Zwraca
Nazwa atrybutu stylu skojarzona z wartością HtmlTextWriterStyle wyliczenia określoną w pliku styleKey
.
Przykłady
Poniższy przykład kodu pokazuje, jak sprawdzić, czy <label>
element jest renderowany. Jeśli tak, sprawdza, czy Color atrybut stylu został zdefiniowany w elemecie . Jeśli atrybut nie został zdefiniowany, metoda jest wywoływana, AddStyleAttribute a GetStyleName metoda konwertuje Color element członkowski wyliczenia na jego reprezentację ciągu w celu przekazania do AddStyleAttribute metody .
// If the markup element being rendered is a Label,
// render the opening tag of a <Font> element before it.
if ( tagKey == HtmlTextWriterTag::Label )
{
// Check whether a Color style attribute is
// included on the Label. If not, use the
// AddStyleAttribute and GetStyleName methods to add one
// and set its value to red.
if ( !IsStyleAttributeDefined( HtmlTextWriterStyle::Color ) )
{
AddStyleAttribute( GetStyleName( HtmlTextWriterStyle::Color ), "red" );
}
// If the markup element being rendered is a Label,
// render the opening tag of a Font element before it.
if (tagKey == HtmlTextWriterTag.Label)
{
// Check whether a Color style attribute is
// included on the Label. If not, use the
// AddStyleAttribute and GetStyleName methods to add one
// and set its value to red.
if (!IsStyleAttributeDefined(HtmlTextWriterStyle.Color))
{
AddStyleAttribute(GetStyleName(HtmlTextWriterStyle.Color), "red");
}
' If the markup element being rendered is a Label,
' render the opening tag of a Font element before it.
If tagKey = HtmlTextWriterTag.Label Then
' Check whether a Color style attribute is
' included on the Label. If not, use the
' AddStyleAttribute and GetStyleName methods to add one
' and set its value to red.
If Not IsStyleAttributeDefined(HtmlTextWriterStyle.Color) Then
AddStyleAttribute(GetStyleName(HtmlTextWriterStyle.Color), "red")
End If
Uwagi
Jeśli styleKey
nie jest prawidłowym HtmlTextWriterStyle obiektem, GetStyleName metoda zwraca pusty ciąg ("").