Barcode Xpress for .NET Framework v14.0 - Updated
Accusoft.BarcodeXpressSdk Namespace / WriterBase Class / MinimumBarWidth Property




In This Topic
    MinimumBarWidth Property
    In This Topic
    Gets and sets the minimum bar width when creating a barcode.
    Syntax
    'Declaration
     
    Public Property MinimumBarWidth As Integer
    'Usage
     
    Dim instance As WriterBase
    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 barcodes.

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

    See Also