Skip to main content

Code93ExtendedSymbology Class

Generates a Code 93 Extended bar code. Code 93 Extended is based on Code 93 and can encode all 128 ASCII characters.

Namespace: DevExpress.WinUI.Controls

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

NuGet Package: DevExpress.WinUI

Declaration

public class Code93ExtendedSymbology :
    SymbologyCheckSumBase<Code93ExtendedGenerator>

Remarks

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

BarCode - Code93 Extended 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.Code93ExtendedGenerator>
SymbologyCheckSumBase<DevExpress.WinUI.Controls.Internal.Code93ExtendedGenerator>
Code93ExtendedSymbology
See Also