 | PathPointFlags Enumeration |
Represents the types of the point in the Path.
Namespace:
Patagames.Pdf.Enums
Assemblies:
Patagames.Pdf.Xamarin.iOS (in Patagames.Pdf.Xamarin.iOS.dll) Version: 4.84.2704
Patagames.Pdf (in Patagames.Pdf.dll) Version: 4.84.2704
Syntax[FlagsAttribute]
public enum PathPointFlags
<FlagsAttribute>
Public Enumeration PathPointFlags
[FlagsAttribute]
public enum class PathPointFlags
[<FlagsAttribute>]
type PathPointFlags
/** @attribute FlagsAttribute */
public enum PathPointFlags
Patagames.Pdf.Enums.PathPointFlags = function();
Patagames.Pdf.Enums.PathPointFlags.createEnum('Patagames.Pdf.Enums.PathPointFlags', true);
Members
| Member name | Value | Description |
---|
| CloseFigure | 1 |
Specifies that the point is the last point in a closed subpath (figure).
|
| LineTo | 2 |
Indicates that the point is one of the two endpoints of a line.
|
| BezierTo | 4 |
Indicates that the point is an endpoint or control point of a cubic Bézier spline.
|
| MoveTo | 6 |
Starts path
|
See Also