HtmlElement.SetAttribute(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.

Sets the value of the named attribute on the element.

public void SetAttribute (string attributeName, string value);

Parameters

attributeName
String

The name of the attribute to set.

value
String

The new value of this attribute.

Examples

The following code example adds a new IMG element to the current document, using SetAttribute to set the SRC attribute for the image.

private void InsertImageFooter()
{
    if (webBrowser1.Document != null)
    {
        HtmlDocument doc = webBrowser1.Document;
        HtmlElement elem = doc.CreateElement("IMG");
        elem.SetAttribute("SRC", "http://www.adatum.com/images/footer-banner.jpg");

        doc.Body.AppendChild(elem);
    }
}

Remarks

An attribute in HTML is any valid name-value pair for that element. HtmlElement exposes only those attributes that are common to all elements, leaving out those that only apply to certain types of elements; SRC is a predefined attribute for the IMG tag, for example, but not for the DIV tag. Use GetAttribute and SetAttribute to manipulate attributes not exposed on the managed Document Object Model (DOM).

If attributeName is not a defined attribute on an element, SetAttribute will define it on the element as a new attribute.

GetAttribute and SetAttribute are case-insensitive.

To set the class attribute on an HtmlElement , you must refer to the attribute as className when specifying the first argument to SetAttribute

Applies to

Produk Versi
.NET Framework 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
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

See also