 | PdfPageObjectsCollectionInsert Method |
Inserts a
PdfPageObject to the collection at the specified index.
Namespace:
Patagames.Pdf.Net
Assembly:
Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.40.2704
Syntaxpublic void Insert(
int index,
PdfPageObject item
)
Public Sub Insert (
index As Integer,
item As PdfPageObject
)
public:
virtual void Insert(
int index,
PdfPageObject^ item
) sealed
abstract Insert :
index : int *
item : PdfPageObject -> unit
override Insert :
index : int *
item : PdfPageObject -> unit
public final void Insert(
int index,
PdfPageObject item
)
function Insert(index, item);
Parameters
- index
- Type: SystemInt32
The zero-based index at which PdfPageObject should be inserted. - item
- Type: Patagames.Pdf.NetPdfPageObject
The PdfPageObject to insert into the collection.
Implements
IListTInsert(Int32, T)
See Also