 | PdfiumFPDF_SaveAsCopy Method |
Saves the copy of specified document in custom way.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static bool FPDF_SaveAsCopy(
IntPtr document,
FPDF_FILEWRITE saveData,
SaveFlags flag
)
Public Shared Function FPDF_SaveAsCopy (
document As IntPtr,
saveData As FPDF_FILEWRITE,
flag As SaveFlags
) As Boolean
public:
static bool FPDF_SaveAsCopy(
IntPtr document,
FPDF_FILEWRITE^ saveData,
SaveFlags flag
)
static member FPDF_SaveAsCopy :
document : IntPtr *
saveData : FPDF_FILEWRITE *
flag : SaveFlags -> bool
public static boolean FPDF_SaveAsCopy(
IntPtr document,
FPDF_FILEWRITE saveData,
SaveFlags flag
)
Patagames.Pdf.Pdfium.FPDF_SaveAsCopy = function(document, saveData, flag);
Parameters
- document IntPtr
- Handle to document. Returned by FPDF_LoadDocument(String, String) and FPDF_CreateNewDocument.
- saveData FPDF_FILEWRITE
- A pointer to a custom file write structure
- flag SaveFlags
- The creating flags.
Return Value
BooleanTRUE for succeed, FALSE for failed.
See Also