ThumbnailCollectionInsert 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)
Syntax public void Insert(
int index,
Thumbnail[] items
)
Public Sub Insert (
index As Integer,
items As Thumbnail()
)
Parameters
- index
- Type: SystemInt32
The index in the collection where the Thumbnail will be inserted. - items
- Type: Atalasoft.Imaging.WinControlsThumbnail
The Thumbnail objects to insert.
Exceptions Exception | 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