DocumentImportNode Method |
Imports a node from another document to this document, without altering or removing the source node from the original document; this method creates a new copy of the source node.
Namespace: Aspose.Html.DomAssembly: Aspose.HTML (in Aspose.HTML.dll) Version: 22.5
Syntaxpublic Node ImportNode(
Node importedNode,
bool deep
)
Public Function ImportNode (
importedNode As Node,
deep As Boolean
) As Node
public:
Node^ ImportNode(
Node^ importedNode,
bool deep
)
member ImportNode :
importedNode : Node *
deep : bool -> Node
Parameters
- importedNode
- Type: Aspose.Html.DomNode
The imported node. - deep
- Type: SystemBoolean
if set to true [deep].
Return Value
Type:
NodeThe
Node.
See Also