HtmlTextWriter.GetAttributeName(HtmlTextWriterAttribute) Método

Definición

Obtiene el nombre del atributo asociado al valor de 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

HtmlTextWriterAttribute para el que se va a obtener el nombre del atributo de marcado.

Devoluciones

String

Cadena que contiene el nombre del atributo de marcado.

Ejemplos

En el ejemplo de código siguiente se muestra cómo usar el GetAttributeName método para convertir un Size valor de enumeración en su nombre de cadena.

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

Comentarios

El GetAttributeName método devuelve una cadena vacía (""), si attrKey no es un valor válido HtmlTextWriterAttribute .

Se aplica a

Consulte también