 | 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
Syntaxpublic 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
)
Public Sub Copy2 (
d_row As Integer,
d_col As Integer,
v_as As CVA,
s_row As Integer,
s_col As Integer,
rows As Integer,
cols As Integer
)
Public Sub Copy2 (
d_row As Integer,
d_col As Integer,
v_as As CVA,
s_row As Integer,
s_col As Integer,
rows As Integer,
cols As Integer
)
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
)
member Copy2 :
d_row : int *
d_col : int *
v_as : CVA *
s_row : int *
s_col : int *
rows : int *
cols : int -> unit
member Copy2 :
d_row : int *
d_col : int *
v_as : CVA *
s_row : int *
s_col : int *
rows : int *
cols : int -> unit
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