Back to Adaptive Vision Library website

You are here: Start » Function Reference » 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.

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
inName const String& Node name.
inText const String& Text value of XmlNode.
inAttributeNames const Array<String>& Attributes names.
inAttributeValues const Array<String>& Attributes values.
outNode XmlNode&

Errors

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

See Also