Adds the entries in an array of actions to the end of the ActionCollection.

Namespace: TallComponents.PDF.Layout.Actions
Assembly: TallComponents.PDF.Layout (in TallComponents.PDF.Layout.dll) Version: 3.0.66.0

Syntax

C#
public void AddRange(
	Action[] actions
)
Visual Basic
Public Sub AddRange ( _
	actions As Action() _
)

Parameters

actions
Type: array<TallComponents.PDF.Layout.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

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 Action)

See Also