Adds the entries in an array of dashes to the end of the DashCollection.

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

Syntax

C#
public void AddRange(
	double[] dashes
)
Visual Basic
Public Sub AddRange ( _
	dashes As Double() _
)

Parameters

dashes
Type: array<System..::..Double>[]()[][]
The array of dashes to be added to the end of the DashCollection.

Remarks

DashCollection 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..::..ArgumentNullExceptionA given dashes is nullNothingnullptra null reference (Nothing in Visual Basic).
System..::..ArgumentException(At least) one of the entries in the given dashes is invalid.

See Also