 | PdfiumFPDF_GetDocPermissions Method |
Get file permission flags of the document.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static uint FPDF_GetDocPermissions(
IntPtr document
)
Public Shared Function FPDF_GetDocPermissions (
document As IntPtr
) As UInteger
public:
static unsigned int FPDF_GetDocPermissions(
IntPtr document
)
static member FPDF_GetDocPermissions :
document : IntPtr -> uint32
public static UInt32 FPDF_GetDocPermissions(
IntPtr document
)
Patagames.Pdf.Pdfium.FPDF_GetDocPermissions = function(document);
Parameters
- document IntPtr
- Handle to document. Returned by FPDF_LoadDocument(String, String) function.
Return Value
UInt32A 32-bit integer indicating permission flags. Please refer to
PDF Reference for detailed description. If the document is not protected, 0xffffffff will be returned.
See Also