Skip to main content

EAN8Symbology Class

Generates an EAN-13 bar code. EAN-8 is a shorter version of the EAN-13. EAN-8 can encode 8 digits, the first 7 of which users should specify, and the last digit (check digit) is generated automatically. EAN-8 is used on small packages where EAN-13 does not fit, for example on pencils or chewing gum packets.

Namespace: DevExpress.WinUI.Controls

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

NuGet Package: DevExpress.WinUI

Declaration

public class EAN8Symbology :
    SymbologyBase<EAN8Generator>

Remarks

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

BarCode - EAN8 Symbology

Inheritance

Object
DependencyObject
UIElement
FrameworkElement
SymbologyBase
SymbologyBase<DevExpress.WinUI.Controls.Internal.EAN8Generator>
EAN8Symbology
See Also