insertItemRange Method
Summary
Inserts the items of the specified array to into this collection at the specified index.
Syntax
JavaScript Syntax
AnnBatesStampCollection.prototype.insertItemRange = function(
index,
items
)
TypeScript Syntax
insertItemRange(
index: number,
items: AnnBatesStamp[]
): void; // protected
Parameters
index
The zero-based index at which the new items should be inserted.
items
The list whose items should be inserted into the collection.