Sample code for 30+ languages & platforms
Delphi DLL

Benefit of XML Methods Having Names Ending in "2"

See more XML Examples

The Chilkat XML methods having names ending with "2" update the internal reference rather than return a new XML object instance. See the example below..

Note: There are a few methods, such as LoadXml2, where the "2" simply indicates the method is the same but has an additional argument. (There are some programming environments where overloading methods is not allowed. Therefore, Chilkat will avoid providing methods having the same name but with different arguments.)

Chilkat Delphi DLL Downloads

Delphi DLL
uses
    Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
    Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Xml;

...

procedure TForm1.Button1Click(Sender: TObject);
var
success: Boolean;
x: PWideChar;
xml: HCkXml;
xAbc: HCkXml;
xXyz: HCkXml;

begin
success := False;

x := '<test><abc><xyz>123</xyz></abc></test>';

xml := CkXml_Create();

success := CkXml_LoadXml(xml,x);

// First demonstrate getting "123" in the simplest way:
Memo1.Lines.Add(CkXml__chilkatPath(xml,'abc|xyz|*'));

// Now demonstrate navigating to the "xyz" node using non-"2" methods.
// The following few lines of code create two object instances, which will need
// to be deleted or garbage collected.
xAbc := CkXml_FindChild(xml,'abc');
xXyz := CkXml_FindChild(xAbc,'xyz');
Memo1.Lines.Add(CkXml__content(xXyz));
CkXml_Dispose(xXyz);
CkXml_Dispose(xAbc);

// Now demonstrate navigating to the "xyz" node using the "2" methods.
// No object instances are created.
success := CkXml_FindChild2(xml,'abc');
success := CkXml_FindChild2(xml,'xyz');
Memo1.Lines.Add(CkXml__content(xml));
// Restore xml back to the root of the document.
CkXml_GetRoot2(xml);

CkXml_Dispose(xml);

end;