VintaSoft Barcode .NET SDK 14.3: Documentation for .NET developer
Vintasoft.Barcode Namespace / ReaderSettings Class / ScanRectangle Property
Syntax Remarks Requirements SeeAlso
In This Topic
    ScanRectangle Property (ReaderSettings)
    In This Topic
    Gets or sets the rectangle on image, where barcodes must be searched.
    Syntax
    'Declaration
    
    <DescriptionAttribute("VintasoftRectI in the image to search barcodes.")>
    Public Property ScanRectangle As Vintasoft.Primitives.VintasoftRectI
    
    
    [Description("VintasoftRectI in the image to search barcodes.")]
    public Vintasoft.Primitives.VintasoftRectI ScanRectangle { get; set; }
    
    
    [Description("VintasoftRectI in the image to search barcodes.")]
    public: __property Vintasoft.Primitives.VintasoftRectI get_ScanRectangle();
    public: __property void set_ScanRectangle(
    Vintasoft.Primitives.VintasoftRectI value
    );
    [Description("VintasoftRectI in the image to search barcodes.")]
    public:
    property Vintasoft.Primitives.VintasoftRectI ScanRectangle { Vintasoft.Primitives.VintasoftRectI get(); void set(Vintasoft.Primitives.VintasoftRectI value); }

    Property Value

    Default value is VintasoftRectI(0,0,0,0) - barcodes will be searched in the entire image.
    Remarks

    This property must be set before calling the BarcodeReader.SetImage(...) method.

    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