  | CVVCopy2 Method  | 
 Copy part of a vector into part of another vector.
 
    Namespace: 
   GeoEngine.Core.GXNet
    Assembly:
   geoengine.core.gxnet (in geoengine.core.gxnet.dll) Version: 2025.1.0.25
Syntaxpublic void Copy2(
	int dest,
	CVV vv_s,
	int source,
	int n
)
public void Copy2(
	int dest,
	CVV vv_s,
	int source,
	int n
)
Public Sub Copy2 ( 
	dest As Integer,
	vv_s As CVV,
	source As Integer,
	n As Integer
)
Public Sub Copy2 ( 
	dest As Integer,
	vv_s As CVV,
	source As Integer,
	n As Integer
)
public:
void Copy2(
	int dest, 
	CVV^ vv_s, 
	int source, 
	int n
)
public:
void Copy2(
	int dest, 
	CVV^ vv_s, 
	int source, 
	int n
)
member Copy2 : 
        dest : int * 
        vv_s : CVV * 
        source : int * 
        n : int -> unit 
member Copy2 : 
        dest : int * 
        vv_s : CVV * 
        source : int * 
        n : int -> unit 
Parameters
- dest
 - Type: SystemInt32
Destination start element - vv_s
 - Type: GeoEngine.Core.GXNetCVV
Source VV (can be the same as Destination) - source
 - Type: SystemInt32
Source start element - n
 - Type: SystemInt32
Number of points 
Remarks
1. Unlike Copy_VV destination VV is not reallocated, nor is
the length changed. The caller must make any desired changes.
2. All VV types are supported and will be converted using
Convert_GS if necessary.
See Also