HtmlTextWriter.GetAttributeName(HtmlTextWriterAttribute) Método

Definição

Obtém o nome do atributo de marcação associado ao valor HtmlTextWriterAttribute especificado.

protected:
 System::String ^ GetAttributeName(System::Web::UI::HtmlTextWriterAttribute attrKey);
protected string GetAttributeName (System.Web.UI.HtmlTextWriterAttribute attrKey);
member this.GetAttributeName : System.Web.UI.HtmlTextWriterAttribute -> string
Protected Function GetAttributeName (attrKey As HtmlTextWriterAttribute) As String

Parâmetros

attrKey
HtmlTextWriterAttribute

O HtmlTextWriterAttribute para o qual obter o nome de atributo de marcação.

Retornos

String

Uma cadeia de caracteres que contém o nome do atributo de marcação.

Exemplos

O exemplo de código a seguir mostra como usar o GetAttributeName método para converter um Size valor de enumeração em seu nome de cadeia de caracteres.

// Use the GetAttributeName method to associate 
// the Size attribute with its HtmlTextWriteAttribute
// enumeration value in a Write method call.
Write( GetAttributeName( HtmlTextWriterAttribute::Size ) );
// Use the GetAttributeName method to associate 
// the Size attribute with its HtmlTextWriteAttribute
// enumeration value in a Write method call.
Write(GetAttributeName(HtmlTextWriterAttribute.Size));
' Use the GetAttributeName method to associate 
' the Size attribute with its HtmlTextWriteAttribute
' enumeration value in a Write method call.
writer.Write(GetAttributeName(HtmlTextWriterAttribute.Size))

Comentários

O GetAttributeName método retorna uma cadeia de caracteres vazia (""), se attrKey não for um valor válido HtmlTextWriterAttribute .

Aplica-se a

Confira também