ImageGear v26.3 - Updated
ImageGear.Formats.Pdf Assembly / ImageGear.Formats.PDF Namespace / ImGearPDEPathElementType Enumeration




In This Topic
    ImGearPDEPathElementType Enumeration
    In This Topic
    Specifies path segment operators in PDE path elements.
    Syntax
    'Declaration
     
    Public Enum ImGearPDEPathElementType 
       Inherits System.Enum
    'Usage
     
    Dim instance As ImGearPDEPathElementType
    public enum ImGearPDEPathElementType : System.Enum 
    __value public enum ImGearPDEPathElementType : public System.Enum 
    public enum class ImGearPDEPathElementType : public System.Enum 
    Members
    MemberValueDescription
    CLOSE_PATH6 Designates h (closepath) operator, which closes the current subpath.
    CURVE_TO2 Designates c (curveto) operator, which appends a Bezier curve to the path.
    CURVE_TO_V3 Designates v (curveto) operator, which appends a Bezier curve to the current path when the first control point coincides with initial point on the curve.
    CURVE_TO_Y4 Designates y (curveto) operator, which appends a Bezier curve to the current path when the second control point coincides with final point on the curve.
    LINE_TO1 Designates l (lineto) operator, which appends a straight line segment from the current point.
    MOVE_TO0 Designates m (moveto) operator, which moves the current point.
    RECT5 Designates re operator, which adds a rectangle to the current path.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             ImageGear.Formats.PDF.ImGearPDEPathElementType

    See Also