VintaSoft Barcode .NET SDK 14.3: Documentation for .NET developer
Vintasoft.Barcode Namespace / ScanDirection Enumeration
Syntax Members Remarks Hierarchy Requirements SeeAlso
In This Topic
    ScanDirection Enumeration
    In This Topic
    Specifies available direction types for barcode scanning.
    Syntax
    'Declaration
    
    <FlagsAttribute()>
    Public Enum ScanDirection
       Inherits System.Enum
    
    
    [Flags()]
    public enum ScanDirection : System.Enum
    
    
    [Flags()]
    __value public enum ScanDirection : public System.Enum
    
    
    [Flags()]
    public enum class ScanDirection : public System.Enum
    
    
    Members
    MemberDescription
    NoneBarcodes is not scanned.
    LeftToRightHorizontally, left to right.
    TopToBottomVertically, top to bottom.
    RightToLeftHorizontally, right to left.
    BottomToTopVertically, bottom to top.
    Angle45and135Top to bottom and bottom to top at 45° and 135° angle. This direction cannot be used separately and should should be used along with horizontal or/and vertical direction.
    HorizontalHorizontally, left to right and right to left.
    VerticalVertically, bottom to top and top to bottom.
    Remarks

    These values may be OR'ed together to form a combination of directions.

    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             Vintasoft.Barcode.ScanDirection

    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