 | PdfClipPathAppendPath Method |
Namespace: Patagames.Pdf.NetAssembly: Patagames.Pdf (in Patagames.Pdf.dll) Version: 5.1.3
Syntaxpublic void AppendPath(
PathPointsCollection path,
FillModes fillMode = FillModes.Winding,
bool autoMerge = false
)
Public Sub AppendPath (
path As PathPointsCollection,
Optional fillMode As FillModes = FillModes.Winding,
Optional autoMerge As Boolean = false
)
public:
void AppendPath(
PathPointsCollection^ path,
FillModes fillMode = FillModes::Winding,
bool autoMerge = false
)
member AppendPath :
path : PathPointsCollection *
?fillMode : FillModes *
?autoMerge : bool
(* Defaults:
let _fillMode = defaultArg fillMode FillModes.Winding
let _autoMerge = defaultArg autoMerge false
*)
-> unit public void AppendPath(
PathPointsCollection path,
FillModes fillMode = FillModes.Winding,
boolean autoMerge = false
)
function AppendPath(path, fillMode, autoMerge);
Parameters
- path PathPointsCollection
- The path.
- fillMode FillModes (Optional)
- The fill mode types defined following. None, Alternate and Winding.
- autoMerge Boolean (Optional)
- True for auto merge. Means to connect the last point of the previous path, if any, with the first point of the specified path.
See Also