 | PdfiumFPDFPageObj_AppendClipPath Method |
Append a path to the current clip
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDFPageObj_AppendClipPath(
IntPtr page_obj,
IntPtr path,
FillModes type,
bool bAutoMerge
)
Public Shared Sub FPDFPageObj_AppendClipPath (
page_obj As IntPtr,
path As IntPtr,
type As FillModes,
bAutoMerge As Boolean
)
public:
static void FPDFPageObj_AppendClipPath(
IntPtr page_obj,
IntPtr path,
FillModes type,
bool bAutoMerge
)
static member FPDFPageObj_AppendClipPath :
page_obj : IntPtr *
path : IntPtr *
type : FillModes *
bAutoMerge : bool -> unit
public static void FPDFPageObj_AppendClipPath(
IntPtr page_obj,
IntPtr path,
FillModes type,
boolean bAutoMerge
)
Patagames.Pdf.Pdfium.FPDFPageObj_AppendClipPath = function(page_obj, path, type, bAutoMerge);
Parameters
- page_obj IntPtr
- Handle to a page object. Returned by FPDFPageObj_Create(PageObjectTypes) or FPDFPage_GetObject(IntPtr, Int32)
- path IntPtr
- Handle to a path.
- type FillModes
- The fill mode types defined following. FPDF_FILL_NULL= 0, FPDF_FILL_ALTERNATE = 1, FPDF_FILL_WINDING = 2
- bAutoMerge Boolean
- True for auto merge
See Also