ActiveReports3 Request technical support
BarWidth Property
See Also  Example


Sets or returns the width, in inches, for the barcode's narrow bars.

Syntax

Visual Basic (Declaration) 
Public Property BarWidth As Single
Visual Basic (Usage)Copy Code
Dim instance As Barcode
Dim value As Single
 
instance.BarWidth = value
 
value = instance.BarWidth
C# 
public float BarWidth {get; set;}

Return Value

A float or Single value in inches. The default value is 0.0f.

Example

C#Copy Code
private void detail_Format(Object sender, System.EventArgs eArgs)
{
   
this.barcode1.BarWidth = 0.0f;
}
Visual BasicCopy Code
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format
    Me.Barcode1.BarWidth = 0.0F
End Sub

Remarks

Setting the width to 0 expands the barcode to fit the control. The width ratio is 1 to 0.012 inches. So setting the BarWidth to 2 will have a value of 0.024 inches, while a value of 10 yields a bar width of 0.12 inches for the narrowest bars.

See Also