PFSDllWrapperpfsCopy Method |
Copy a sub-tree of a parameter object to a node of a parameter object.
Namespace: DHI.PFSAssembly: DHI.PFS (in DHI.PFS.dll) Version: 16.0.0.0 (11.1.1.1111)
Syntax public static void pfsCopy(
IntPtr src,
IntPtr dst
)
Public Shared Sub pfsCopy (
src As IntPtr,
dst As IntPtr
)
public:
static void pfsCopy(
IntPtr src,
IntPtr dst
)
static member pfsCopy :
src : IntPtr *
dst : IntPtr -> unit
Parameters
- src
- Type: SystemIntPtr
A pfsNode pointer, source sub tree. - dst
- Type: SystemIntPtr
A pfsNode pointer, destination sub tree.
Remarks
With two pfsNodes given, the sub-tree referenced by Src is copied to the position referenced by Dst. Src and Dst must both refer to sections, or both to keywords. Parameters may not be explicitly copied. During the copy process, the sub-tree originally connected to Dst is deleted, and the sub-tree referenced by Src remains unaffected. Src and Dst may belong to different pfsHandles.
See Also