Click or drag to resize

PathAction Enumeration

PathAction describes elements that are used in describing a path or subpath

Namespace:  Atalasoft.PdfDoc.Generating.Rendering
Assembly:  Atalasoft.PdfDoc (in Atalasoft.PdfDoc.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public enum PathAction
Members
  Member nameDescription
Move Move to a new location in the path. This is used to either start a new path or a new subpath.
Line Extends the current path or subpath by connection a line from the last location in the current path to a new point
Curve Extends the current path or subpath by adding a Bezier curve from the last location in the current path through two control points and ending with the final path.
Close Closes the current path or subpath by connection a straight line segment from the the last point in the current path to the first point in the current path. Note that closing a path is different from simply doing a Line operation to the last point in that if the path is stroked, the corners will be correctly mitered with a Close but will not be mitered with a Line.
See Also