Click or drag to resize

PdfTypeArrayInsert(Int32, PdfTypeBase, PdfIndirectList) 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,
	PdfIndirectList list
)

Parameters

index  Int32
The zero-based index at which item should be inserted.
item  PdfTypeBase
The object to insert into the Array.
list  PdfIndirectList
The list of objects.
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptionindex is not a valid index in the Array.
ArgumentNullExceptionitem or list is null.
See Also