ThumbnailCollection.Insert Method (Int32,Thumbnail[]) |
Inserts an array of Thumbnails into the collection.
Namespace:
Atalasoft.Imaging.WinControls
Assembly:
Atalasoft.dotImage.WinControls (in Atalasoft.dotImage.WinControls.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntaxpublic void Insert(
int index,
Thumbnail[] items
)
Public Sub Insert (
index As Integer,
items As Thumbnail()
)
Parameters
- index
- Type: System.Int32
The index in the collection where the Thumbnail will be inserted. - items
- Type:Atalasoft.Imaging.WinControls.Thumbnail[]
The Thumbnail objects to insert.
ExceptionsException | Condition |
---|
ArgumentNullException | Thrown if the items argument is null (Nothing in VB). |
ArgumentOutOfRangeException | Thrown if the index is out of range for this collection. |
See Also