Skip to main content

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.

Barcode - UPC-A

Refer to the following article for more information: Universal Product Code.

Add the Bar Code to a Report

  1. Drag the XRBarCode item from the DX.23.2: Report Controls tab and drop it onto the report.

  2. Set the XRBarCode control’s Symbology property to UPCA (an object of the UPCAGenerator type).

  3. 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.

View Example: How to add a bar code to a report

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:

using DevExpress.XtraPrinting.BarCode;
using DevExpress.XtraReports.UI;
//...

var barCode = CreateUPCABarCode("012345678");

var report = new XtraReport() {
    Bands = {
        new DetailBand() {
            Controls = { barCode }
        }
    }
};