Chilkat HOME ASP Visual Basic VB.NET C# Visual C++ C MFC Delphi FoxPro Java Perl PHP Python Ruby SQL Server VBScript
|
Add Child TreeAdd a child tree to an existing XML document.
// First, build a sample XML document: Chilkat.Xml xml = new Chilkat.Xml(); xml.Tag = "stocks"; Chilkat.Xml xmlM = null; xmlM = xml.NewChild("Microsoft",""); xmlM.NewChild2("symbol","MSFT"); xmlM.NewChild2("recentPrice","28.00"); Chilkat.Xml xmlG = null; xmlG = xml.NewChild("Google",""); xmlG.NewChild2("symbol","GOOG"); xmlG.NewChild2("recentPrice","440.00"); // Display the XML so far... textBox1.Text += xml.GetXml() + "\r\n"; // This is the XML displayed: // <stocks> // <Microsoft> // <symbol>MSFT</symbol> // <recentPrice>28.00</recentPrice> // </Microsoft> // <Google> // <symbol>GOOG</symbol> // <recentPrice>440.00</recentPrice> // </Google> // </stocks> // We want to add Yahoo to it: string xYahoo; xYahoo = "<Yahoo><symbol>YHOO</symbol><recentPrice>28.00</recentPrice></Yahoo>"; Chilkat.Xml xmlYahoo = new Chilkat.Xml(); xmlYahoo.LoadXml(xYahoo); // Add the xmlYahoo document just under the root node of // our original XML document: xml.AddChildTree(xmlYahoo); // Display the result: textBox1.Text += xml.GetXml() + "\r\n"; |
Need a specific example? Send a request to support@chilkatsoft.com
© 2000-2008 Chilkat Software, Inc. All Rights Reserved.