GrapeCity.ActiveReports.v8 Assembly > GrapeCity.ActiveReports.SectionReportModel Namespace > Barcode Class : BarWidth Property |
'Declaration Public Property BarWidth As System.Single
public System.float BarWidth {get; set;}
A float or Single value in inches. The default value is 0.0f.
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.
private void detail_Format(Object sender, System.EventArgs eArgs) { this.barcode1.BarWidth = 0.0f; }
Private Sub Detail1_Format(ByVal sender As Object, ByVal e As System.EventArgs) Handles Detail1.Format Me.Barcode1.BarWidth = 0.0F End Sub