VintaSoft Barcode .NET SDK 14.3: Documentation for .NET developer
Vintasoft.Barcode Namespace / BarcodePathPointType Enumeration
Syntax Members Remarks Hierarchy Requirements SeeAlso
In This Topic
    BarcodePathPointType Enumeration
    In This Topic
    Specifies point types and flags for the data points in a path.
    Syntax
    'Declaration
    
    <FlagsAttribute()>
    Public Enum BarcodePathPointType
       Inherits System.Enum
    
    
    [Flags()]
    public enum BarcodePathPointType : System.Enum
    
    
    [Flags()]
    __value public enum BarcodePathPointType : public System.Enum
    
    
    [Flags()]
    public enum class BarcodePathPointType : public System.Enum
    
    
    Members
    MemberDescription
    StartPointThe starting point of a graphics path.
    LineA line segment.
    CubicBezierCurveA cubic Bézier curve.
    CloseSubpathThe endpoint of a subpath.
    Remarks

    For each point, bits 0 through 2 indicate the type of a point, and bits 3 through 7 hold a set of flags that specify the attributes of a point.

    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             Vintasoft.Barcode.BarcodePathPointType

    Requirements

    Target Platforms: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also