Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

HtmlTextWriter::GetAttributeName Method (HtmlTextWriterAttribute)

 

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

Namespace:   System.Web.UI
Assembly:  System.Web (in System.Web.dll)

protected:
String^ GetAttributeName(
	HtmlTextWriterAttribute attrKey
)

Parameters

attrKey
Type: System.Web.UI::HtmlTextWriterAttribute

The HtmlTextWriterAttribute to obtain the markup attribute name for.

Return Value

Type: System::String^

A string containing the name of the markup attribute.

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

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

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft