The DomNode class / om.DomNode methods |
Returns the name of a DOM node attribute by position.
getAttributeName( index INTEGER ) RETURNING result STRING
The getAttributeName() method returns the name of an attribute by position in the current node.
DOM node attribute names are case-sensitive.
If the attribute does not exist at the given position, the method returns NULL.
DEFINE node om.DomNode ... DISPLAY node.getAttributeName(12)