 | PdfiumFPDFPageObjectList_InsertObject Method |
Add an object to the objects coolection after specified index. The page object is automatically freed.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDFPageObjectList_InsertObject(
IntPtr list,
IntPtr page_object,
int index
)
Public Shared Sub FPDFPageObjectList_InsertObject (
list As IntPtr,
page_object As IntPtr,
index As Integer
)
public:
static void FPDFPageObjectList_InsertObject(
IntPtr list,
IntPtr page_object,
int index
)
static member FPDFPageObjectList_InsertObject :
list : IntPtr *
page_object : IntPtr *
index : int -> unit
public static void FPDFPageObjectList_InsertObject(
IntPtr list,
IntPtr page_object,
int index
)
Patagames.Pdf.Pdfium.FPDFPageObjectList_InsertObject = function(list, page_object, index);
Parameters
- list IntPtr
- Handle to a list of page objects.
- page_object IntPtr
- Handle to a page object. Returned by FPDFPageObj_NewTextObj, FPDFPageObj_NewTextObjEx(String, Int32, IntPtr) or FPDFPageObj_NewPathObj.
- index Int32
- >The zero-based index at which object should be inserted.
See Also