 | PdfiumFPDFARRAY_InsertAt Method |
Insert the PDF object into given position.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDFARRAY_InsertAt(
IntPtr handle,
int index,
IntPtr value,
IntPtr objectList
)
Public Shared Sub FPDFARRAY_InsertAt (
handle As IntPtr,
index As Integer,
value As IntPtr,
objectList As IntPtr
)
public:
static void FPDFARRAY_InsertAt(
IntPtr handle,
int index,
IntPtr value,
IntPtr objectList
)
static member FPDFARRAY_InsertAt :
handle : IntPtr *
index : int *
value : IntPtr *
objectList : IntPtr -> unit
public static void FPDFARRAY_InsertAt(
IntPtr handle,
int index,
IntPtr value,
IntPtr objectList
)
Patagames.Pdf.Pdfium.FPDFARRAY_InsertAt = function(handle, index, value, objectList);
Parameters
- handle IntPtr
- Handle to Array object.
- index Int32
- An integer index that is greater than or equal to 0 and less than the value returned by FPDFARRAY_GetCount(IntPtr).
- value IntPtr
- Handle to the PDF object
- objectList IntPtr
- Handle to objects list. IntPtr.Zero for default
See Also