| MatSetArray Method (Int32, Int32, Byte) | 
        
         
            Set the specified array data to this matrix
            
 
    Namespace: 
   OpenCvSharp
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
 Syntax
Syntaxpublic void SetArray(
	int row,
	int col,
	params byte[] data
)
Public Sub SetArray ( 
	row As Integer,
	col As Integer,
	ParamArray data As Byte()
)
public:
void SetArray(
	int row, 
	int col, 
	... array<unsigned char>^ data
)
member SetArray : 
        row : int * 
        col : int * 
        data : byte[] -> unit 
function SetArray(row, col, ... data);
Parameters
- row
- Type: SystemInt32
 
- col
- Type: SystemInt32
 
- data
- Type: SystemByte
 
 See Also
See Also