Chilkat
HOME
Android™
ASP
Visual Basic
VB.NET
C#
iOS (IPhone)
Objective-C
C++
C
MFC
Delphi
FoxPro
Java
Perl
PHP Extension
PHP ActiveX
Python
PowerShell
Ruby
SQL Server
VBScript
|
Sort XML Records in Delphi
// Sort the records by ArticleTitle procedure TForm1.Example5Click(Sender: TObject); var xmlDoc: IChilkatXml; begin xmlDoc := CoChilkatXml.Create(); // Load the input document. xmlDoc.LoadXmlFile('crisp.xml'); // This method sorts the children by of xmlDoc // by the contents of each child's ArticleTitle // child node. xmlDoc.SortRecordsByContent('ArticleTitle',1); xmlDoc.SaveXml('crispSorted.xml'); end; |
© 2000-2010 Chilkat Software, Inc. All Rights Reserved.