Back to Aurora Vision Library Lite website

You are here: Start » All Functions » Xml » Xml_CreateNode

Xml_CreateNode


This is Filter Equivalent. This function may be present in generated code, but should not be used in hand-written code.

Header: STD.h
Namespace: avl

Creates a new XmlNode.

Syntax

void avl::Xml_CreateNode
(
	const atl::String& inName,
	const atl::String& inText,
	const atl::Array<atl::String>& inAttributeNames,
	const atl::Array<atl::String>& inAttributeValues,
	avl::XmlNode& outNode
)

Parameters

Name Type Default Description
Input value inName const String& Node name.
Input value inText const String& Text value of XmlNode.
Input value inAttributeNames const Array<String>& Attributes names.
Input value inAttributeValues const Array<String>& Attributes values.
Output value outNode XmlNode&

Errors

List of possible exceptions:

Error type Description
DomainError inAttributeNames and inAttributeValues have different items count in Xml_CreateNode.

See Also