 | Pdfium.FPDFClipPath_AppendPath Method |
Append the specified path to the specified clipping path object.
Namespace: Patagames.PdfAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.94.2704
Syntaxpublic static void FPDFClipPath_AppendPath(
IntPtr hClipPath,
IntPtr path,
FillModes type,
bool bAutoMerge
)
Public Shared Sub FPDFClipPath_AppendPath (
hClipPath As IntPtr,
path As IntPtr,
type As FillModes,
bAutoMerge As Boolean
)
public:
static void FPDFClipPath_AppendPath(
IntPtr hClipPath,
IntPtr path,
FillModes type,
bool bAutoMerge
)
static member FPDFClipPath_AppendPath :
hClipPath : IntPtr *
path : IntPtr *
type : FillModes *
bAutoMerge : bool -> unit
public static void FPDFClipPath_AppendPath(
IntPtr hClipPath,
IntPtr path,
FillModes type,
boolean bAutoMerge
)
Patagames.Pdf.Pdfium.FPDFClipPath_AppendPath = function(hClipPath, path, type, bAutoMerge);
Parameters
- hClipPath IntPtr
- Handle to a clipping path object. Returned by FPDFPageObj_GetClipPath(IntPtr), FPDF_CreateEmptyClipPath() or FPDF_CreateClipPath(Single, Single, Single, Single).
- path IntPtr
- Handle to the path.
- type FillModes
- The fill mode types defined following. None, Alternate and Winding.
- bAutoMerge Boolean
- True for auto merge. Means to connect the last point of the previous path, if any, with the specified path.
See Also