GS1 Data Matrix
- 3 minutes to read
GS1 Data Matrix is a variant of the Data Matrix symbology that conforms to GS1 specifications.
Refer to the GS1 General Specification for more details.
Add the Bar Code to a Report
Drag the XRBarCode item from the DX.24.1: Report Controls tab and drop it onto the report.
Set the XRBarCode control’s Symbology property to DataMatrixGS1 (an object of the DataMatrixGS1Generator type).
Specify common barcode properties and properties specific to GS1 Data Matrix.
Specific Properties
-
Gets or sets whether the Module property value should be calculated automatically based on the barcode size.
-
Specifies the symbol (or set of symbols) in the bar code’s text that will be replaced with the FNC1 functional character when the bar code’s bars are drawn.
-
Specifies whether or not parentheses should be included in the bar code’s text.
Runtime Example
The following code creates the GS1- Data Matrix 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 CreateDataMatrixGS1BarCode(string BarCodeText) {
// Create a barcode control.
XRBarCode barCode = new XRBarCode();
// Set the barcode's type to Data Matrix GS1.
barCode.Symbology = new DataMatrixGS1Generator();
// Adjust the barcode's main properties.
barCode.AutoModule = true;
barCode.Text = BarCodeText;
barCode.ShowText = true;
barCode.Width = 200;
barCode.Height = 200;
// Adjust the properties specific to the barcode type.
// (Assigned below are the default values.)
((DataMatrixGS1Generator)barCode.Symbology).FNC1Substitute = "#";
((DataMatrixGS1Generator)barCode.Symbology).HumanReadableText = true;
((DataMatrixGS1Generator)barCode.Symbology).MatrixSize = DataMatrixSize.MatrixAuto;
return barCode;
}
The code example below shows how to create a report with the GS1- Data Matrix barcode: