setattr
setattr |
Purpose
Synopsis
procedure setattr(doc:xmldoc, n:integer, name:string, v:text|string|boolean|integer|real)
Arguments
doc
|
Document to use
|
n
|
Node number (must be an element)
|
name
|
Name of the attribute
|
v
|
New value for the attribute
|
Example
See
addnode.
Further information
1. Attribute values are stored as
text objects: the versions of this procedure accepting other types perform the conversion implicitly.
2. Attributes are nodes of type
XML_ATTR: procedure
setvalue may also be used to change the value of an attribute.
3. Setting an empty value to an attribute does not remove this attribute from the attribute list of the element. Use
delattr for this purpose.
Related topics
Module