Back to FabImage Library website
You are here: Start » Function Reference » All Functions » Xml » Xml_SetAttributes
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 |
Sets values of attributes which were selected using XPath request.
Syntax
void fil::Xml_SetAttributes ( const fil::XmlNode& inNode, const ftl::String& inXPath, const ftl::String& inValue, fil::XmlNode& outNode )
Parameters
Name | Type | Default | Description | |
---|---|---|---|---|
![]() |
inNode | const XmlNode& | Source node. | |
![]() |
inXPath | const String& | XPath criteria. | |
![]() |
inValue | const String& | Value to set to attributes | |
![]() |
outNode | XmlNode& |
In-place Processing
This function supports in-place data processing - you can pass the same reference to inNode and outNode
Read more about In-place Computation.
Errors
List of possible exceptions:
Error type | Description |
---|---|
DomainError | Invalid XmlNode in Xml_SetAttributes. |
DomainError | Invalid XPath in Xml_SetAttributes. |
DomainError | XPath doesn't lead to a valid attribute or an attribute doesn't exist. Attributes are identified with @name specifier in Xml_SetAttributes. |
See Also
- Xml_GetIntegerAttribute – Gets a node attribute value as Integer.
- Xml_GetRealAttribute – Gets a node attribute value as Real.
- Xml_GetBoolAttribute – Gets a node attribute value as Bool.
- Xml_GetStringAttribute – Gets a node attribute value as String.