HtmlTextWriter.IsAttributeDefined Method (HtmlTextWriterAttribute)

 

Determines whether the specified markup attribute and its value are rendered during the next call to the RenderBeginTag method.

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

member IsAttributeDefined : 
        key:HtmlTextWriterAttribute -> bool

Parameters

key
Type: System.Web.UI.HtmlTextWriterAttribute

The HtmlTextWriterAttribute associated with the markup attribute.

Return Value

Type: System.Boolean

true if the attribute is rendered during the next call to the RenderBeginTag method; otherwise, false.

To obtain the value to be assigned to the HtmlTextWriterAttribute object, use the IsAttributeDefined(HtmlTextWriterAttribute, String) overload instead of this one.

The following code example shows how to use an override of the RenderBeginTag method in a class that inherits from the HtmlTextWriter class. The RenderBeginTag override checks whether a <font> markup element will be rendered. If so, the override calls the IsAttributeDefined method to check whether the <font> element contains a Size attribute. If not, the AddAttribute method calls the GetAttributeKey method, which defines the Size attribute and sets its value to 30pt.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show: