Modifier

HtmlTextWriter.GetAttributeName(HtmlTextWriterAttribute) Method

Definition

Obtains the name of the markup attribute associated with the specified HtmlTextWriterAttribute value.

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

Parameters

attrKey
HtmlTextWriterAttribute

The HtmlTextWriterAttribute to obtain the markup attribute name for.

Returns

A string containing the name of the markup attribute.

Examples

The following code example shows how to use the GetAttributeName method to convert a Size enumeration value to its string name.

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

Remarks

The GetAttributeName method returns an empty string (""), if attrKey is not a valid HtmlTextWriterAttribute value.

Applies to

See also