Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(PowerBuilder) Benefit of XML Methods Having Names Ending in "2"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.)
integer li_rc string x oleobject loo_Xml integer li_Success oleobject loo_XAbc oleobject loo_XXyz x = "<test><abc><xyz>123</xyz></abc></test>" loo_Xml = create oleobject // Use "Chilkat_9_5_0.Xml" for versions of Chilkat < 10.0.0 li_rc = loo_Xml.ConnectToNewObject("Chilkat.Xml") if li_rc < 0 then destroy loo_Xml MessageBox("Error","Connecting to COM object failed") return end if li_Success = loo_Xml.LoadXml(x) // First demonstrate getting "123" in the simplest way: Write-Debug loo_Xml.ChilkatPath("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. loo_XAbc = loo_Xml.FindChild("abc") loo_XXyz = loo_XAbc.FindChild("xyz") Write-Debug loo_XXyz.Content destroy loo_XXyz destroy loo_XAbc // Now demonstrate navigating to the "xyz" node using the "2" methods. // No object instances are created. li_Success = loo_Xml.FindChild2("abc") li_Success = loo_Xml.FindChild2("xyz") Write-Debug loo_Xml.Content // Restore xml back to the root of the document. loo_Xml.GetRoot2() destroy loo_Xml |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.