ImageGear .NET v25.2 - Updated
ImageGear.Barcode Assembly / ImageGear.Barcode Namespace / ImGearBarcodeWriterBase Class / MinimumBarWidth Property




In This Topic
    MinimumBarWidth Property
    In This Topic
    Gets or sets the minimum bar width when creating a barcode.
    Syntax
    'Declaration
     
    Public Property MinimumBarWidth As Integer
    'Usage
     
    Dim instance As ImGearBarcodeWriterBase
    Dim value As Integer
     
    instance.MinimumBarWidth = value
     
    value = instance.MinimumBarWidth
    public int MinimumBarWidth {get; set;}
    public: __property int get_MinimumBarWidth();
    public: __property void set_MinimumBarWidth( 
       int value
    );
    public:
    property int MinimumBarWidth {
       int get();
       void set (    int value);
    }

    Property Value

    An integer value which represents the barcode minimum width.
    Remarks

    The default value is 3.

    This value is used to set the bar width in 1D and PDF417 barcodes and the module size (black and white squares that make up the barcode) in DataMatrix and QR barcodes.

    This value will be overridden if AdjustBarWidth parameter is set to true

    See Also