The DomNode class / om.DomNode methods |
Returns the value of a DOM node attribute by position.
getAttributeValue( index INTEGER ) RETURNING result STRING
The getAttributeValue() method returns the value 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.getAttributeValue(12)