Skip to main content

DataMatrixGS1Symbology Class

Generates a GS1 (Data Matrix) bar code. GS1 Data Matrix is a variant of the Data Matrix symbology that conforms to GS1 specifications.

Namespace: DevExpress.WinUI.Controls

Assembly: DevExpress.WinUI.BarCode.v23.2.dll

NuGet Package: DevExpress.WinUI

Declaration

public class DataMatrixGS1Symbology :
    SymbologyBase<DataMatrixGS1Generator>

Remarks

<Window ...
    xmlns:dxc="using:DevExpress.WinUI.Controls">
    <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
        <dxc:BarCodeControl Text="10199201" >
            <dxc:BarCodeControl.Symbology>
                <dxc:DataMatrixGS1Symbology />
            </dxc:BarCodeControl.Symbology>
        </dxc:BarCodeControl>
    </StackPanel>
</Window>

BarCode - DataMatrixGS1 Symbology

Inheritance

Object
DependencyObject
UIElement
FrameworkElement
SymbologyBase
SymbologyBase<DevExpress.WinUI.Controls.Internal.DataMatrixGS1Generator>
DataMatrixGS1Symbology
See Also