GetElementsByTagName (NotesDOMDocumentNode - LotusScript®)

Returns a NotesDOMNodeList of all the NotesDOMElementNode objects with a given tag name. The list is arranged in the order in which they are encountered.

Defined in

NotesDOMDocumentNode

Syntax

Set notesDOMNodeList = notesDOMDocument .GetElementsByTagName( elementName )

Parameters

elementName

String. The name of the element to match on.

Return value

notesDOMNodeList

A new NotesDOMNodeList object containing all the matched NotesDOMElementNode objects.

Usage

Set elementName to "*" to match all elements.

Example