Barcode Xpress for .NET Core v14.0 - Updated January 7, 2025
Accusoft.BarcodeXpressSdk Namespace / Reader Class / MinimumBarcodeSize Property




In This Topic
MinimumBarcodeSize Property
In This Topic
Gets and sets the minimum size required for recognizing a barcode. This is determined by the largest distance between two adjacent corners in the barcode. It is not based on the bounding box width/height.
Syntax
'Declaration
 
Public Property MinimumBarcodeSize As Integer
 
'Usage
 
Dim instance As Reader
Dim value As Integer
 
instance.MinimumBarcodeSize = value
 
value = instance.MinimumBarcodeSize

Property Value

A long which represents the minimum required size of a barcode to be returned.
Remarks

Note: Any of the 4 edges of a barcode may pass this minimum size test to be returned (eg. A MinimumBarcodeSize of 100 would return a barcode with edge-lengths of [80, 85, 90, 100] because the fourth edge length is greater-than-or-equal to the minimum size).

Default value: 0

See Also