Adds the entries in an array of actions to the end of the ActionCollection.
Namespace: TallComponents.PDF.ActionsAssembly: TallComponents.PDF.Kit (in TallComponents.PDF.Kit.dll) Version: 3.0.69.1
Syntax
| C# |
|---|
public void AddRange( Action[] actions ) |
| Visual Basic |
|---|
Public Sub AddRange ( _ actions As Action() _ ) |
Parameters
- actions
- Type: array<TallComponents.PDF.Actions..::..Action>[]()[][]
The array of actions to be added to the end of the ActionCollection.
Remarks
ActionCollection 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.)
ActionCollection does not accept duplicate elements.
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 Action) |