XhtmlTextWriter.OnAttributeRender Method
Assembly: System.Web (in system.web.dll)
protected: virtual bool OnAttributeRender ( String^ name, String^ value, HtmlTextWriterAttribute key ) override
protected boolean OnAttributeRender ( String name, String value, HtmlTextWriterAttribute key )
protected override function OnAttributeRender ( name : String, value : String, key : HtmlTextWriterAttribute ) : boolean
Not applicable.
Parameters
- name
The XHTML attribute to render.
- value
The value assigned to the XHTML attribute.
- key
The HtmlTextWriterAttribute enumeration value associated with the XHTML attribute.
Return Value
true if the attribute is rendered to the page; otherwise, false.The following code example demonstrates how to override the OnAttributeRender method to check whether a size attribute is rendered for any of the elements that are rendered by this text writer. If a size attribute is rendered, the code checks whether its value is 8 point. If so, the OnAttributeRender method returns true, allowing the attribute and its value to render. If the value is other than 8 point, the OnAttributeRender method returns false, and the attribute and its value are not rendered. If the key parameter of the OnAttributeRender method does not match the Size attribute, the base functionality of the OnAttributeRender method is called, as defined in the XhtmlTextWriter class.
This code example is part of a larger example provided for the XhtmlTextWriter class.
// Override the OnAttributeRender method to
// allow this text writer to render only eight-point
// text size.
protected boolean OnAttributeRender(String name, String value,
HtmlTextWriterAttribute key)
{
if (key.Equals(HtmlTextWriterAttribute.Size)) {
if (String.Compare(value, "8pt") == 0) {
return true;
}
else {
return false;
}
}
else {
return super.OnAttributeRender(name, value, key);
}
} //OnAttributeRender