HtmlTextWriter.GetAttributeName(HtmlTextWriterAttribute) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定した 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。
戻り値
マークアップ属性の名前を格納している文字列。
例
次のコード例は、このメソッドを使用 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空の文字列 ("") を返します。