Edit

Share via


HtmlTextWriter.GetAttributeName(HtmlTextWriterAttribute) Method

Definition

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

protected string GetAttributeName(System.Web.UI.HtmlTextWriterAttribute attrKey);

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

Remarks

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

Applies to

See also