 | PdfiumFPDF_GetPageSizes Method |
Get the sizes of all pages in document
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static bool FPDF_GetPageSizes(
IntPtr document,
float[] buffer
)
Public Shared Function FPDF_GetPageSizes (
document As IntPtr,
buffer As Single()
) As Boolean
public:
static bool FPDF_GetPageSizes(
IntPtr document,
array<float>^ buffer
)
static member FPDF_GetPageSizes :
document : IntPtr *
buffer : float32[] -> bool
public static boolean FPDF_GetPageSizes(
IntPtr document,
float[] buffer
)
Patagames.Pdf.Pdfium.FPDF_GetPageSizes = function(document, buffer);
Parameters
- document IntPtr
- Handle to document. Returned by FPDF_LoadDocument(String, String) function.
- buffer Single
- Pointer to a buffer of pairs of float values receiving the pages size.
Return Value
BooleanTrue for success. False for error (document or page not found)
See Also