Click or drag to resize

PdfTypeArrayInsert(Int32, PdfTypeBase) Method

Inserts an item to the Array at the specified index.

Namespace: Patagames.Pdf.Net.BasicTypes
Assembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntax
public void Insert(
	int index,
	PdfTypeBase item
)

Parameters

index  Int32
The zero-based index at which item should be inserted.
item  PdfTypeBase
The object to insert into the Array.

Implements

IListTInsert(Int32, T)
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionindex is not a valid index in the Array.
ArgumentNullExceptionitem is null.
See Also