I must create xml document with node that has more values with same name

<PstlAdr>
  <Ctry>SI</Ctry>
  <AdrLine>Gosposvetska 12</AdrLine>
  <AdrLine>Kranj</AdrLine>
</PstlAdr>

With oNode.ChildValues['AdrLine'] := ... it is not possible - only one value with same name can be added. How can I add more values with same name?

Best regards

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

You can do it like this:

oNode.AddChild('AdrLine').Text := ...
link|improve this answer
Thank you very much ! – Branko Feb 23 at 9:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.