 | PdfiumFPDF_RenderPage_Continue Method |
Continue rendering a PDF page.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static ProgressiveStatus FPDF_RenderPage_Continue(
IntPtr page,
IFSDK_PAUSE pause
)
Public Shared Function FPDF_RenderPage_Continue (
page As IntPtr,
pause As IFSDK_PAUSE
) As ProgressiveStatus
public:
static ProgressiveStatus FPDF_RenderPage_Continue(
IntPtr page,
IFSDK_PAUSE^ pause
)
static member FPDF_RenderPage_Continue :
page : IntPtr *
pause : IFSDK_PAUSE -> ProgressiveStatus
public static ProgressiveStatus FPDF_RenderPage_Continue(
IntPtr page,
IFSDK_PAUSE pause
)
Patagames.Pdf.Pdfium.FPDF_RenderPage_Continue = function(page, pause);
Parameters
- page IntPtr
- Handle to the page. Returned by FPDF_LoadPage(IntPtr, Int32) function.
- pause IFSDK_PAUSE
- The IFSDK_PAUSE interface.A callback mechanism allowing the page rendering
process to be paused before it's finished. This can be NULL if you don't want to pause.
Return Value
ProgressiveStatusThe rendering status. See flags for progressive process status for the details.
Remarks
In Version 2236 of Pdfium this method is always returns RenderFailed if pause is NULL
See Also