HtmlTextWriter.GetAttributeName(HtmlTextWriterAttribute) Method

Definition

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

C#
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.

C#
// 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

Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also