UPC-A
- 2 minutes to read
The Universal Product Code (UPC) is a barcode symbology that is widely used in the United States, Canada, Europe, Australia, New Zealand, and other countries for tracking trade items in stores.
Refer to the following article for more information: Universal Product Code.
Add the Bar Code to a Report
Drag the XRBarCode item from the DX.24.2: Report Controls tab and drop it onto the report.
Set the XRBarCode control’s Symbology property to UPCA (an object of the UPCAGenerator type).
Specify common barcode properties.
Note
The control does not verify the length of the assigned character string specified by the barcode control’s Text value. It is the developer’s responsibility to check that the passed string contains no more than 11 digits (the control calculates the last twelfth digit automatically). If the number of digits is less than 11, the leading zeroes are added to the resulting barcode.
Runtime Example
The following code creates the UPC-A barcode and specifies its properties.
using System;
using System.Collections.Generic;
using System.Drawing.Printing;
using System.Windows.Forms;
using DevExpress.XtraPrinting.BarCode;
using DevExpress.XtraReports.UI;
// ...
public XRBarCode CreateUPCABarCode(string BarCodeText) {
// Create a barcode control.
XRBarCode barCode = new XRBarCode();
// Set the barcode's type to UPC-A.
barCode.Symbology = new UPCAGenerator();
// Adjust the barcode's main properties.
barCode.Text = BarCodeText;
barCode.Width = 275;
barCode.Height = 200;
return barCode;
}
The code example below shows how to create a report with the UPC-A barcode: