HtmlDocument::GetElementsByTagName Method (String^)

 

Retrieve a collection of elements with the specified HTML tag.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
HtmlElementCollection^ GetElementsByTagName(
	String^ tagName
)

Parameters

tagName
Type: System::String^

The name of the HTML tag for the HtmlElement objects you want to retrieve.

Return Value

Type: System.Windows.Forms::HtmlElementCollection^

The collection of elements who tag name is equal to the tagName argument.

HTML pages often use the META tag to embed arbitrary information about the document. The following HTML code example retrieves all of the META tags within an HTML document, finds the META tag with the name Description, and displays it to the user. The code example requires that your application has a WebBrowser control named WebBrowser1.

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

.NET Framework
Available since 2.0
Return to top
Show: