Insert the entries in an array of Actions to the specific locations in the ActionCollection.

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

Syntax

C#
public void InsertRange(
	int index,
	Action[] actions
)
Visual Basic
Public Sub InsertRange ( _
	index As Integer, _
	actions As Action() _
)

Parameters

index
Type: System..::..Int32
The zero based start index for the inserted actions.
actions
Type: array<TallComponents.PDF.Actions..::..Action>[]()[][]
The actions to be interted in the ActionCollection.

Remarks

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

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionA given actions is nullNothingnullptra null reference (Nothing in Visual Basic).
System..::..ArgumentException(At least) one of the entries in the given actions is already in this ActionCollection. (Duplicate actions)

See Also