 | PdfiumFPDFOCG_CheckObjectVisible Method |
Checks if the specified page object is visible according to the optional content group.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static bool FPDFOCG_CheckObjectVisible(
IntPtr hDoc,
OCGEvent evt,
IntPtr page_object
)
Public Shared Function FPDFOCG_CheckObjectVisible (
hDoc As IntPtr,
evt As OCGEvent,
page_object As IntPtr
) As Boolean
public:
static bool FPDFOCG_CheckObjectVisible(
IntPtr hDoc,
OCGEvent evt,
IntPtr page_object
)
static member FPDFOCG_CheckObjectVisible :
hDoc : IntPtr *
evt : OCGEvent *
page_object : IntPtr -> bool
public static boolean FPDFOCG_CheckObjectVisible(
IntPtr hDoc,
OCGEvent evt,
IntPtr page_object
)
Patagames.Pdf.Pdfium.FPDFOCG_CheckObjectVisible = function(hDoc, evt, page_object);
Parameters
- hDoc IntPtr
- Handle to document. Returned by FPDF_LoadDocument(String, String) or FPDF_CreateNewDocument function.
- evt OCGEvent
- Specifies that the visibility of the page object should be checked for viewing, printing, or exporting the document.
- page_object IntPtr
- Handle to a page object.
Return Value
BooleanTrue if the page object is visible; otherwise false.
See Also