Click or drag to resize

CVACopy2 Method

Copy part of a vector into part of another vector.

Namespace:  GeoEngine.Core.GXNetX
Assembly:  geoengine.core.gxnetx (in geoengine.core.gxnetx.dll) Version: 2024.2.0.25
Syntax
public void Copy2(
	int d_row,
	int d_col,
	CVA v_as,
	int s_row,
	int s_col,
	int rows,
	int cols
)

public void Copy2(
	int d_row,
	int d_col,
	CVA v_as,
	int s_row,
	int s_col,
	int rows,
	int cols
)

Parameters

d_row
Type: SystemInt32
Destination start row
d_col
Type: SystemInt32
Destination start column
v_as
Type: GeoEngine.Core.GXNetXCVA
Source VA (can be the same as Destination)
s_row
Type: SystemInt32
Source start row
s_col
Type: SystemInt32
Source start column
rows
Type: SystemInt32
Number of rows
cols
Type: SystemInt32
Number of columns
Remarks
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.
See Also