Shifts the sequence elements from the inserted position to the nearest end of the sequence and copies the element content there if the pointer is not IntPtr.Zero

Namespace: Emgu.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static IntPtr cvSeqInsert(
	IntPtr seq,
	int beforeIndex,
	IntPtr element
)
Public Shared Function cvSeqInsert ( _
	seq As IntPtr, _
	beforeIndex As Integer, _
	element As IntPtr _
) As IntPtr
public:
static IntPtr cvSeqInsert(
	IntPtr seq, 
	int beforeIndex, 
	IntPtr element
)

Parameters

seq
IntPtr
Sequence
beforeIndex
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
element
IntPtr
Inserted element

Return Value

Pointer to the inserted element

See Also