Click or drag to resize
CVACopy2 Method
Copy part of a vector into part of another vector.

Available since Oasis montaj version: 5.0.0
License: Available to anyone.  

Namespace: GeoEngine.Core.GXNet
Assembly: geoengine.core.gxnet (in geoengine.core.gxnet.dll)
Notes
1. Unlike Copy_VA destination VA is not reallocated, nor are the dimensions changed. The caller must make any desired changes. 2. All VA types are supported and will be converted using Convert_GS if necessary.
Syntax
public void Copy2(
	int i1,
	int i2,
	CVA oVA3,
	int i4,
	int i5,
	int i6,
	int i7
)

Parameters

i1
Type: SystemInt32
Destination start row
i2
Type: SystemInt32
Destination start column
oVA3
Type: GeoEngine.Core.GXNetCVA
Source VA (can be the same as Destination)
i4
Type: SystemInt32
Source start row
i5
Type: SystemInt32
Source start column
i6
Type: SystemInt32
Number of rows
i7
Type: SystemInt32
Number of columns
See Also