HtmlTextWriter.GetAttributeName(HtmlTextWriterAttribute) メソッド

定義

指定した HtmlTextWriterAttribute 値に関連付けられたマークアップ属性の名前を取得します。

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

パラメーター

attrKey
HtmlTextWriterAttribute

マークアップ属性名の取得対象の HtmlTextWriterAttribute

戻り値

String

マークアップ属性の名前を格納している文字列。

次のコード例は、このメソッドを使用 GetAttributeName して列挙値を 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.
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))

注釈

有効なHtmlTextWriterAttribute値でない場合attrKey、このメソッドはGetAttributeName空の文字列 ("") を返します。

適用対象

こちらもご覧ください