本主题阐述了如何把 Code 39 码制 (编码类型) 的条形码控件插入到报表中。 另外还简要说明了 Code 39 编码类型。 要学习更多关于 XtraReports 中的条形码的内容,请参阅 条形码概述 主题。
简要说明
Code 39,第一个字母数字式码制,仍然被广泛使用,特别是在非零售环境中。 是美国国防部使用的标准条形码,也用于 Health Industry Bar Code Council (HIBCC)。 Code 39 也称为 "3 of 9 Code" 和 "USD-3"。
条形码的属性
应设置下列属性,来指定 Code 39 类型的特殊条形码:
- BarCodeGeneratorBase.CalcCheckSum - 此属性用于指定是否计算条形码的校验和。 默认值是 true。
- Code39Generator.WideNarrowRatio - 此属性用于指定条形码的条密度。 此属性值应在 2.2 和 3 之间指派,包含 2.2 和 3 在内。
示例
这个示例展示了如何创建一个 Code 39 条形码,并设置它的基本属性。
C# | 复制代码 |
---|---|
using DevExpress.XtraReports.UI; using DevExpress.XtraPrinting.BarCode; // ... private void button1_Click(object sender, System.EventArgs e) { XtraReport1 report = new XtraReport1(); // Create a barcode control. XRBarCode barcode = new XRBarCode(); // Set the barcode's type to Code 39. barcode.Symbology = new Code39Generator(); // Adjust the Code39 barcode's main properties. barcode.Text = "0123456789"; barcode.Width = 400; barcode.Height = 100; // Adjust the Code39 barcode's specific properties. ((Code39Generator)barcode.Symbology).CalcCheckSum = false; ((Code39Generator)barcode.Symbology).WideNarrowRatio = 2.5F; report.Detail.Controls.Add(barcode); report.ShowPreview(); } |
Visual Basic | 复制代码 |
---|---|
Imports DevExpress.XtraReports.UI Imports DevExpress.XtraPrinting.BarCode ' ... Private Sub Button1_Click(sender As Object, e As System.EventArgs) _ Handles Button1.Click Dim report As New XtraReport1() ' Create a barcode control. Dim Barcode As New XRBarCode() ' Set the barcode's type to Code 39. Barcode.Symbology = New Code39Generator() ' Adjust the Code39 barcode's main properties. Barcode.Text = "0123456789" Barcode.Width = 400 Barcode.Height = 100 ' Adjust the Code39 barcode's specific properties. Dim Code39Symbology As Code39Generator = Barcode.Symbology Code39Symbology.CalcCheckSum = False Code39Symbology.WideNarrowRatio = 2.5 report.Detail.Controls.Add(barcode) report.ShowPreview() End Sub |