Gets the mapping in PDF of the HTML elements with the specified HTML tag name. The search is case insensitive.

Namespace: EvoPdf
Assembly: evohtmltopdf (in evohtmltopdf.dll) Version: 4.12.0.0

Syntax

C#
public HtmlElementMapping[] GetElementsByTagName(
	string htmlElementTagName
)
Visual Basic
Public Function GetElementsByTagName ( 
	htmlElementTagName As String
) As HtmlElementMapping()
Visual C++
public:
array<HtmlElementMapping^>^ GetElementsByTagName(
	String^ htmlElementTagName
)

Parameters

htmlElementTagName
Type: System..::..String
The HTML tag name of the element.

Return Value

Type: array<HtmlElementMapping>[]()[][]
The mappings in PDF of the specified HTML elements or null if no element with the specified tag name was found.

See Also