Insert the entries in an array of dashes to the specific locations in the DashCollection.

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

Syntax

C#
public void InsertRange(
	int index,
	double[] dashes
)
Visual Basic
Public Sub InsertRange ( _
	index As Integer, _
	dashes As Double() _
)

Parameters

index
Type: System..::..Int32
The zero based start index for the inserted dashes.
dashes
Type: array<System..::..Double>[]()[][]
The dashes to be interted in the DashCollection.

Remarks

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

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