HtmlTextWriter.GetAttributeName(HtmlTextWriterAttribute) Metoda

Definice

Získá název atributu revize přidruženého k zadané HtmlTextWriterAttribute hodnotě.

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

Parametry

attrKey
HtmlTextWriterAttribute

Získání HtmlTextWriterAttribute názvu atributu značky pro.

Návraty

String

Řetězec obsahující název atributu značky.

Příklady

Následující příklad kódu ukazuje, jak pomocí GetAttributeName metody převést hodnotu výčtu Size na název řetězce.

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

Poznámky

Metoda GetAttributeName vrátí prázdný řetězec (""), pokud attrKey není platná HtmlTextWriterAttribute hodnota.

Platí pro

Viz také