FormFix v6.0 for .NET - Updated
Insert Method (IntegerCollection)



Accusoft.FormFixSdk Namespace > IntegerCollection Class : Insert Method
The zero-based index where this method will place the element. If the value of this parameter is equal to the original number of elements in the collection, this method will perform the same operation as the Add method.
The element to search for in the collection.
Inserts an element into the collection.
Syntax
'Declaration
 
Public Sub Insert( _
   ByVal index As Integer, _
   ByVal value As Integer _
) 
'Usage
 
Dim instance As IntegerCollection
Dim index As Integer
Dim value As Integer
 
instance.Insert(index, value)
public void Insert( 
   int index,
   int value
)
public:
void Insert( 
   int index,
   int value
) 

Parameters

index
The zero-based index where this method will place the element. If the value of this parameter is equal to the original number of elements in the collection, this method will perform the same operation as the Add method.
value
The element to search for in the collection.
Remarks
This method implements a standard collection operation. It will insert an element into the collection at the given index. It will move all elements (if any) that follow the newly added element back one place (their indices will be one greater than they were.)
See Also

Reference

IntegerCollection Class
IntegerCollection Members
Add Method

Is this page helpful?
Yes No
Thanks for your feedback.