%XML_RemoveAttribute function


Function
Function removes the attribute.
Declaration
BOOL %XML_RemoveAttribute(
    INT in element, 
    TEXT in name
 )

Parameters
element Handle to XML element.
name Attribute name.

Return value
@TRUE - attribute removed, @FALSE - cannot remove the attribute.
Description
The function removes the given attribute of the XML element.
Example
 BOOL _ok
 _ok := %XML_RemoveAttribute(_el, "attribute")
 

Napíšte komentár