| MatOfByteIndexerItem Property (Int32) | 
        
         
            n-dimensional indexer
            
 
    Namespace: 
   OpenCvSharp
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
 Syntax
Syntaxpublic override byte this[
	params int[] idx
] { get; set; }Public Overrides Default Property Item ( 
	ParamArray idx As Integer()
) As Byte
	Get
	Set
public:
virtual property unsigned char default[... array<int>^ idx] {
	unsigned char get (... array<int>^ idx) override;
	void set (... array<int>^ idx, unsigned char value) override;
}abstract Item : byte with get, set
override Item : byte with get, set
function get_Item(... idx);
function set_Item(value);
Parameters
- idx
- Type: SystemInt32
 Array of Mat::dims indices.
Return Value
Type: 
ByteA value to the specified array element.
 See Also
See Also