XhtmlTextWriter.AddRecognizedAttribute(String, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds an attribute to an XHTML element. The collection of element-specific attributes for the XhtmlTextWriter object is referenced by the ElementSpecificAttributes property.
public:
virtual void AddRecognizedAttribute(System::String ^ elementName, System::String ^ attributeName);
public virtual void AddRecognizedAttribute (string elementName, string attributeName);
abstract member AddRecognizedAttribute : string * string -> unit
override this.AddRecognizedAttribute : string * string -> unit
Public Overridable Sub AddRecognizedAttribute (elementName As String, attributeName As String)
Parameters
- elementName
- String
The XHTML element to add the attribute to.
- attributeName
- String
The attribute to add.
Remarks
Use the AddRecognizedAttribute method to add an attribute to an XHTML element. The added attribute can then be recognized and rendered by the XhtmlTextWriter object. To prevent the writer from rendering a common attribute of an XHTML element, use the RemoveRecognizedAttribute method.