ArrayAtom InsertRange Function. Inserts the elements in the supplied array into this array at the specified index. ABCpdf .NET PDF Library.

ABCpdf .net

 
   

Inserts the elements in the supplied array into this array at the specified index

 

   
Syntax  

[C#]
void InsertRange(int index, ArrayAtom array)

[Visual Basic]
Sub InsertRange(index As Integer, array As ArrayAtom)

Throws Exceptions may throw Exception()

 

   

Params
 
Name Description
index The zero-based index at which the new elements should be inserted.
array The array whose elements should be inserted.

 

   

Notes
 

Inserts the elements in the supplied array into this array at the specified index.

If the index is equal to the Count then the elements are added to the end of the array.

If the supplied array is null or the index is invalid then an exception will be raised.

 

   

Example
 

None.