VintaSoft Barcode .NET SDK 14.3: Documentation for .NET developer
Vintasoft.Barcode Namespace / ReaderSettings Class / MatrixBarcodeMaxCellSize Property
Syntax Remarks Requirements SeeAlso
In This Topic
    MatrixBarcodeMaxCellSize Property (ReaderSettings)
    In This Topic
    Gets or sets the maximum cell size, in pixels, for two-dimensional matrix barcodes (Aztec, DataMatrix, DotCode, QR, Micro QR, Han Xin Code, Maxicode).
    Syntax
    'Declaration
    
    <DefaultValueAttribute(64)>
    <DescriptionAttribute("Maximum cell size, in pixels, for two-dimensional matrix barcodes.")>
    Public Property MatrixBarcodeMaxCellSize As Integer
    
    
    [DefaultValue(64)]
    [Description("Maximum cell size, in pixels, for two-dimensional matrix barcodes.")]
    public int MatrixBarcodeMaxCellSize { get; set; }
    
    
    [DefaultValue(64)]
    [Description("Maximum cell size, in pixels, for two-dimensional matrix barcodes.")]
    public: __property int get_MatrixBarcodeMaxCellSize();
    public: __property void set_MatrixBarcodeMaxCellSize(
    int value
    );
    [DefaultValue(64)]
    [Description("Maximum cell size, in pixels, for two-dimensional matrix barcodes.")]
    public:
    property int MatrixBarcodeMaxCellSize { int get(); void set(int value); }

    Property Value

    Minimum value is 2, maximum value is 256. Default value is 64.
    Remarks

    Correct (appropriate) value of this property increases the barcode reading speed.

    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