Insert the entries in an array of Actions to the specific locations in the ActionCollection.
Namespace: TallComponents.PDF.ActionsAssembly: TallComponents.PDF.Controls.WinForms (in TallComponents.PDF.Controls.WinForms.dll) Version: 2.0.46.0
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
| Exception | Condition |
|---|---|
| System..::..ArgumentNullException | A 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) |