Adds the elements of an array of links to the end of the collection.

Namespace: TallComponents.PDF.Annotations
Assembly: TallComponents.PDF.Kit (in TallComponents.PDF.Kit.dll) Version: 3.0.69.1

Syntax

C#
public void AddRange(
	Link[] links
)
Visual Basic
Public Sub AddRange ( _
	links As Link() _
)

Parameters

links
Type: array<TallComponents.PDF.Annotations..::..Link>[]()[][]
The array of links to be addded to the end of the collection.

Remarks

links does not accept a nullNothingnullptra null reference (Nothing in Visual Basic) as a valid value.

Note: When an exception occurs the state of the collection is undefined. (None or some entries might have been added. The status is not reverted.)

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionThe given links is nullNothingnullptra null reference (Nothing in Visual Basic).
System..::..ArgumentException(At least) one of the entries in the given links is already in this collection. (Duplicate Link)

See Also