Ja
path stimmt, ich bekomme ja auch den Knoten an und für sich. Nur eben mit einer leeren Attributliste.
Beispiel:
Delphi-Quellcode:
path := '
Label1';
xnode :=
xml[path]
if (xnode <>
NIL)
then
writeln(IntToStr(xnode.attributes.count));
Ergibt 0
Delphi-Quellcode:
path := '
Label1\Anchors';
xnode :=
xml[path]
if (xnode <>
NIL)
then
writeln(IntToStr(xnode.attributes.count));
Ergibt 0
Während
writeln(IntToStr(xml.rootnode.attributes.count));
Ergibt 6