Skip to main content

Code93Symbology Class

Generates a Code 39 (USD-3) bar code.

Namespace: DevExpress.WinUI.Controls

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

NuGet Package: DevExpress.WinUI

Declaration

public class Code93Symbology :
    SymbologyCheckSumBase<Code93Generator>

Remarks

Code 93 is an alphanumeric, variable length symbology. It was designed to supplement and improve the Code 39 barcode.

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

BarCode - Code93 Symbology

Use the CalcCheckSum property to specify the parameters specific to the Code 93 Extended type of barcode.

Inheritance

Object
DependencyObject
UIElement
FrameworkElement
SymbologyBase
SymbologyBase<DevExpress.WinUI.Controls.Internal.Code93Generator>
SymbologyCheckSumBase<DevExpress.WinUI.Controls.Internal.Code93Generator>
Code93Symbology
See Also