Back to FabImage Library website
You are here: Start » Function Reference » All Functions » Xml » AccessXmlNode
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: | fil |
Module: | FoundationLite |
Gets information from the XmlNode object.
Syntax
void fil::AccessXmlNode ( const fil::XmlNode& inNode, ftl::Array<fil::XmlNode>& outChildren, ftl::Array<ftl::String>& outAttributeNames, ftl::Array<ftl::String>& outAttributeValues, ftl::String& outName, ftl::String& outText )
Parameters
Name | Type | Default | Description | |
---|---|---|---|---|
![]() |
inNode | const XmlNode& | ||
![]() |
outChildren | Array<XmlNode>& | Children nodes of the inNode. | |
![]() |
outAttributeNames | Array<String>& | List of attributes names. | |
![]() |
outAttributeValues | Array<String>& | List of attributes values. | |
![]() |
outName | String& | Node name. | |
![]() |
outText | String& | Text value if node is a text node. |
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | Invalid XmlNode in AccessXmlNode. |
See Also
- Xml_CreateNode – Creates a new XmlNode.