[This is preliminary documentation and is subject to change.]

Returns a collection containing all elements with the specified name.

Namespace:  WebKit.DOM
Assembly:  WebKitBrowser (in WebKitBrowser.dll) Version: 0.5.0.0 (0.5.0.0)

Syntax

C#
public NodeList GetElementsByTagName(
	string TagName
)
Visual Basic (Declaration)
Public Function GetElementsByTagName ( _
	TagName As String _
) As NodeList
Visual C++
public:
NodeList^ GetElementsByTagName(
	String^ TagName
)

Parameters

TagName
Type: System..::.String
The name of the elements.

Return Value

A NodeList containing all elements with the specified name.

See Also