VintaSoft Barcode .NET SDK 14.3: Documentation for .NET developer
Vintasoft.Barcode Namespace / WriterSettings Class / MinWidth Property
Syntax Remarks Requirements SeeAlso
In This Topic
    MinWidth Property (WriterSettings)
    In This Topic
    Gets or sets the width (and height for 2D barcodes), in pixels, of single block.
    Syntax
    'Declaration
    
    <DescriptionAttribute("Width (and height for 2D barcodes), in pixels, of single block.")>
    <DefaultValueAttribute(3)>
    <CategoryAttribute("Common")>
    Public Property MinWidth As Integer
    
    
    [Description("Width (and height for 2D barcodes), in pixels, of single block.")]
    [DefaultValue(3)]
    [Category("Common")]
    public int MinWidth { get; set; }
    
    
    [Description("Width (and height for 2D barcodes), in pixels, of single block.")]
    [DefaultValue(3)]
    [Category("Common")]
    public: __property int get_MinWidth();
    public: __property void set_MinWidth(
    int value
    );
    [Description("Width (and height for 2D barcodes), in pixels, of single block.")]
    [DefaultValue(3)]
    [Category("Common")]
    public:
    property int MinWidth { int get(); void set(int value); }

    Property Value

    Minimum value is 1. Default value is 3.
    Remarks

    Single block for 1D barcodes - single bar.
    Single block for 2D barcodes - single bar or single row.

    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