Discuss this help topic in SecureBlackbox Forum

TElXMLCustomElement.SaveToXML

TElXMLCustomElement     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


This method saves element's data in the DOM format.

Declaration

[VB.NET]
    Function SaveToXML(ByVal Document As TElXMLDOMDocument) As TElXMLDOMElement
    Function SaveToXML(ByVal Document As TElXMLDOMDocument, ByVal Formatter As TElXMLCustomFormatter) As TElXMLDOMElement

[Pascal]
    function SaveToXML(Document : TElXMLDOMDocument) : TElXMLDOMElement;
    function SaveToXML(Document : TElXMLDOMDocument; Formatter : TElXMLCustomFormatter = nil) : TElXMLDOMElement; virtual; abstract;

[Java]
    TElXMLDOMElement saveToXML(TElXMLDOMDocument arg0, TElXMLCustomFormatter arg1);
    TElXMLDOMElement saveToXML(TElXMLDOMDocument Document);

Parameters

  • Document - XML document to which the new XML DOM element should belong.
  • Formatter - a supplementary parameter for internal use. User should pass nil/null/Nothing.

Return value

Returns a reference to the newly created DOM element.

Description

Call this method to save element's data into an XML DOM (Document Object Model) element of the specified DOM document.

See also:     LoadFromXML    

Discuss this help topic in SecureBlackbox Forum