 | PdfiumFPDFPage_HasTransparency Method |
Check whether the content of specified PDF page contains transparency or not.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static bool FPDFPage_HasTransparency(
IntPtr page
)
Public Shared Function FPDFPage_HasTransparency (
page As IntPtr
) As Boolean
public:
static bool FPDFPage_HasTransparency(
IntPtr page
)
static member FPDFPage_HasTransparency :
page : IntPtr -> bool
public static boolean FPDFPage_HasTransparency(
IntPtr page
)
Patagames.Pdf.Pdfium.FPDFPage_HasTransparency = function(page);
Parameters
- page IntPtr
- Handle to a page. Returned by FPDFPage_New(IntPtr, Int32, Double, Double) or FPDF_LoadPage(IntPtr, Int32).
Return Value
BooleanTRUE means that the PDF page does contains transparency. Otherwise, returns FALSE
See Also