<br><br><div class="gmail_quote">On 2 December 2011 19:09, Mattias Gaertner <span dir="ltr"><<a href="mailto:nc-gaertnma@netcologne.de">nc-gaertnma@netcologne.de</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div class="im">On Fri, 2 Dec 2011 18:59:25 +0000<br>
Frank Church <<a href="mailto:vfclists@gmail.com">vfclists@gmail.com</a>> wrote:<br>
<br>
> Is there a way of knowning the attribute count of a TDOMNode as well as<br>
> reading the value of an attribute if it exists?<br>
<br>
</div>HasAttribute:=(Node is TDOMElement) and<br>
(TDOMElement.hasAttribute('Name'));<br>
<br>
Attribute value:<br>
<br>
if Node is TDOMElement then<br>
  Value:=TDOMElement(Node).GetAttribute('Name')<br>
else<br>
  Value:='';<br>
<br>
<br>
Mattias<br>
_______________________________________________<br>
fpc-pascal maillist  -  <a href="mailto:fpc-pascal@lists.freepascal.org">fpc-pascal@lists.freepascal.org</a><br>
<a href="http://lists.freepascal.org/mailman/listinfo/fpc-pascal" target="_blank">http://lists.freepascal.org/mailman/listinfo/fpc-pascal</a><br>
</blockquote></div><br>Is there a way of counting the attributes and listing them out if you don't know what they are in advance, or some kind of iteration which will tell you when you are on the last item or there are none at all?<br>
<br><br clear="all"><br>-- <br>Frank Church<br><br>=======================<br><a href="http://devblog.brahmancreations.com">http://devblog.brahmancreations.com</a><br>