HtmlDocument::GetElementsByTagName Method (String^)
.NET Framework (current version)
Retrieve a collection of elements with the specified HTML tag.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
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.
.NET Framework
Available since 2.0
Available since 2.0
Show: