 | BitMatrixCopyTo Method (BitMatrix, Int32, Int32, Int32, Int32, Int32, Int32) |
Copies a rectangular region of this BitMatrix to another BitMatrix.
Namespace:
Opait.Barcoder.Api
Assembly:
Opait.Barcoder (in Opait.Barcoder.dll) Version: 1.3.4.0
Syntaxpublic void CopyTo(
BitMatrix dest,
int srcRow,
int srcCol,
int srcRows,
int srcColumns,
int dstRow,
int dstCol
)
Parameters
- dest
- Type: Opait.Barcoder.ApiBitMatrix
The destination BitMatrix. - srcRow
- Type: SystemInt32
The starting row index of the source. - srcCol
- Type: SystemInt32
The starting column index of the source. - srcRows
- Type: SystemInt32
The number of source rows to copy. - srcColumns
- Type: SystemInt32
The number of source columns to copy. - dstRow
- Type: SystemInt32
The starting row index of the destination. - dstCol
- Type: SystemInt32
The starting column index of the destination.
See Also