[Overview][Constants][Types][Classes][Procedures and functions][Index] Reference for unit 'Laz2_DOM' (#lazutils)

TDOMCDATASection.CloneNode

Makes a copy of the DOM CDATA Section.

Declaration

Source position: laz2_dom.pas line 698

public function TDOMCDATASection.CloneNode(

  deep: Boolean;

  ACloneOwner: TDOMDocument

):TDOMNode; override; overload;

Arguments

deep

  

Not used in the method.

ACloneOwner

  

DOM Document used to created the new DOM CDATA section node.

Function result

DOM Node created with the value for the CDATA Section.

Description

CloneNode is a TDOMNode function used to create a copy or clone of the current DOM CDATA section using the specified DOM Document as the owner of the new node. CloneNode calls the CreateCDATASection method in the ACloneOwner argument to allocate and create the new TDOMCDATASection instance with NodeValue from the current class instance.

The value for the deep argument is not significant in the method; it is not used to clone a CDATA node.

See also

TDOMNode.CloneNode

  

Makes a copy of the DOM node.


Version 3.2 Generated 2024-02-25 Home