HtmlTextWriter.GetStyleName(HtmlTextWriterStyle) Método

Definição

Obtém o nome de atributo de estilo de marcação associado ao valor de enumeração HtmlTextWriterStyle especificado.

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

Parâmetros

styleKey
HtmlTextWriterStyle

O HtmlTextWriterStyle para o qual obter o nome de atributo de estilo.

Retornos

String

O nome do atributo de estilo associado ao valor de enumeração HtmlTextWriterStyle especificado em styleKey.

Exemplos

O exemplo de código a seguir mostra como verificar se um <label> elemento está sendo renderizado. Nesse caso, ele verifica se um Color atributo de estilo foi definido no elemento. Se o atributo não tiver sido definido, o AddStyleAttribute método será chamado e o GetStyleName método converterá o membro de Color enumeração em sua representação de cadeia de caracteres para passar para o AddStyleAttribute método.

// 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

Comentários

Se styleKey não for um objeto válido HtmlTextWriterStyle , o GetStyleName método retornará uma cadeia de caracteres vazia ("").

Aplica-se a

Confira também