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




In This Topic
    MinimumBarHeight Property
    In This Topic
    Gets and sets the minimum height of the bars when creating a barcode.
    Syntax
    'Declaration
     
    Public Property MinimumBarHeight As Integer
    'Usage
     
    Dim instance As WriterBase
    Dim value As Integer
     
    instance.MinimumBarHeight = value
     
    value = instance.MinimumBarHeight
    public int MinimumBarHeight {get; set;}
    public: __property int get_MinimumBarHeight();
    public: __property void set_MinimumBarHeight( 
       int value
    );
    public:
    property int MinimumBarHeight {
       int get();
       void set (    int value);
    }

    Property Value

    An integer value which represents the barcode minimum height.
    Remarks

    The default value is 100 (PDF417 should set this value between 3 and 5)

    This value is used to set the bar height in 1D barcodes. PDF417 uses this value as a multiplier of the minimum barcode width to set the row module height.

    This property does not affect DataMatrix.

    See Also