Barcode Xpress for .NET Framework v13.9 - Updated
MinimumBarcodeSize Property




Accusoft.BarcodeXpressSdk Namespace > Reader Class : MinimumBarcodeSize Property
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
public int MinimumBarcodeSize {get; set;}
public: __property int get_MinimumBarcodeSize();
public: __property void set_MinimumBarcodeSize( 
   int value
);
public:
property int MinimumBarcodeSize {
   int get();
   void set (    int value);
}

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

Reference

Reader Class
Reader Members

Is this page helpful?
Yes No
Thanks for your feedback.