XML_SetNodeValue
%XML_SetNodeValue function
Function
The function sets the value of the XML element.
Declaration
BOOL %XML_SetNodeValue(
INT in node,
TEXT in value
)Parameters
node | Handle to XML node. |
value | Element value. |
Return value
@TRUE - value set, @FALSE - cannot set the value.
Description
The function sets the value of the given XML element.
Example
BOOL _ok
_ok := %XML_SetNodeValue(_el, "value")