VintaSoft Barcode .NET SDK 14.3: Documentation for .NET developer
Vintasoft.Barcode Namespace / ReaderSettings Class / ThresholdMax Property
Syntax Example Requirements SeeAlso
In This Topic
    ThresholdMax Property (ReaderSettings)
    In This Topic
    Gets or sets the maximum threshold value of algorithm color conversion in the barcode reading iteration process (see ThresholdMode.Iterations).
    Syntax
    'Declaration
    
    <DefaultValueAttribute(600)>
    <DescriptionAttribute("Maximum threshold value of algorithm color conversion in the barcode reading iteration process.")>
    Public Property ThresholdMax As Integer
    
    
    [DefaultValue(600)]
    [Description("Maximum threshold value of algorithm color conversion in the barcode reading iteration process.")]
    public int ThresholdMax { get; set; }
    
    
    [DefaultValue(600)]
    [Description("Maximum threshold value of algorithm color conversion in the barcode reading iteration process.")]
    public: __property int get_ThresholdMax();
    public: __property void set_ThresholdMax(
    int value
    );
    [DefaultValue(600)]
    [Description("Maximum threshold value of algorithm color conversion in the barcode reading iteration process.")]
    public:
    property int ThresholdMax { int get(); void set(int value); }

    Property Value

    Minimum value is 0, maximum value is 765. Default value is 600.
    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