VintaSoft Barcode .NET SDK 14.3: Documentation for .NET developer
Vintasoft.Barcode Namespace / ReaderSettings Class / ScanInterval Property
Syntax Remarks Example Requirements SeeAlso
In This Topic
    ScanInterval Property (ReaderSettings)
    In This Topic
    Gets or sets the scan interval for barcode search.
    Syntax
    'Declaration
    
    <DescriptionAttribute("Scan interval for barcode search.")>
    <DefaultValueAttribute(5)>
    Public Property ScanInterval As Integer
    
    
    [Description("Scan interval for barcode search.")]
    [DefaultValue(5)]
    public int ScanInterval { get; set; }
    
    
    [Description("Scan interval for barcode search.")]
    [DefaultValue(5)]
    public: __property int get_ScanInterval();
    public: __property void set_ScanInterval(
    int value
    );
    [Description("Scan interval for barcode search.")]
    [DefaultValue(5)]
    public:
    property int ScanInterval { int get(); void set(int value); }

    Property Value

    Minimum value is 1, maximum value is 255. Default value is 5.
    Remarks

    A value of 1 means scan every pixel row or column of the image; 2 means scan every second row or column, and so on.

    Increasing the value of this field may result in faster reading of the image, but increases the probablility of not detecting narrow or poorly formed barcodes. Decreasing the value of this field can have the opposite effect: slower reading of the image but better barcode detection.

    Example

    Please see example here.

    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