XML_SetAttribute
%XML_SetAttribute function
Function
The function sets the value of the element attribute.
Declaration
BOOL %XML_SetAttribute(
INT in element,
TEXT in name,
TEXT in value
)Parameters
element | Handle to XML element. |
name | Attribute name. |
value | Attribute 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_SetAttribute(_el, "attribute", "value")