VintaSoft Imaging .NET SDK 15.1: Documentation for .NET developer
Vintasoft.Imaging Namespace / ImageCollection Class / InsertRange(Int32,VintasoftImage[]) Method
Syntax Exceptions Requirements SeeAlso
In This Topic
InsertRange(Int32,VintasoftImage[]) Method (ImageCollection)
In This Topic
Inserts the elements of collection into the ImageCollection at the specified index.
Syntax
'Declaration

Public Sub InsertRange( _
ByVal index
The zero-based index at which the new elements should be inserted.
As System.Int32, _
ByVal images
The array of the VintasoftImage whose elements should be inserted into the ImageCollection.
() As VintasoftImage _
)
public void InsertRange(
System.Int32 index,
VintasoftImage[] images
)

Parameters

index
The zero-based index at which the new elements should be inserted.
images
The array of the VintasoftImage whose elements should be inserted into the ImageCollection.
Exceptions
ExceptionDescription
Thrown if index is less than zero.
Thrown if images is null.
Requirements

Target Platforms: .NET 10; .NET 9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

See Also