Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 715 Bytes

File metadata and controls

34 lines (26 loc) · 715 Bytes

GetFirstChild

Description

Gets the last child within the specified element path. Use GetPreviousElement to step through the rest of the elements at the same nesting level.

FUNCTION GetFirstChild(
				XMLHandle   : LONGINT;
				elementPath : STRING;
				VAR value   : STRING):INTEGER;
def vs.GetFirstChild(XMLHandle, elementPath):
    return (INTEGER, value)

Parameters

Name Type Description
XMLHandle LONGINT
elementPath STRING
value STRING Output parameter.

Examples

XMLParse

Version

Availability: from All Versions

This is drop-in function.

Category