 | PdfiumFPDFHOLDER_InsertIndirectObject Method |
Replace the object with the specified number by the specified object
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static bool FPDFHOLDER_InsertIndirectObject(
IntPtr objects_list,
int objnum,
IntPtr indirect_object
)
Public Shared Function FPDFHOLDER_InsertIndirectObject (
objects_list As IntPtr,
objnum As Integer,
indirect_object As IntPtr
) As Boolean
public:
static bool FPDFHOLDER_InsertIndirectObject(
IntPtr objects_list,
int objnum,
IntPtr indirect_object
)
static member FPDFHOLDER_InsertIndirectObject :
objects_list : IntPtr *
objnum : int *
indirect_object : IntPtr -> bool
public static boolean FPDFHOLDER_InsertIndirectObject(
IntPtr objects_list,
int objnum,
IntPtr indirect_object
)
Patagames.Pdf.Pdfium.FPDFHOLDER_InsertIndirectObject = function(objects_list, objnum, indirect_object);
Parameters
- objects_list IntPtr
- The list of objects to which you want to insert an object.
- objnum Int32
- The existing number of object in list.
- indirect_object IntPtr
- Handle to the object which should be inserted.
Return Value
Boolean
True if successfull; false if any error has occured;
Note |
---|
This methd release the old object before replece it by new one. |
See Also