http://www.emgu.com
Inserts element in sequence middle
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public void Insert(
int index,
T data
) |
Visual Basic |
---|
Public Sub Insert ( _
index As Integer, _
data As T _
) |
Visual C++ |
---|
public:
void Insert(
int index,
T data
) |
Parameters
- index
- Type: System..::..Int32
Index before which the element is inserted. Inserting before 0 (the minimal allowed value of the parameter) is equal to cvSeqPushFront and inserting before seq->total (the maximal allowed value of the parameter) is equal to cvSeqPush
- data
- Type: T
Inserted element
See Also