Skip to main content

CodeMSISymbology Class

Generates an MSI bar code. MSI is based on the Plessey Code symbology. MSI, also known as Modified Plessey, is used to mark retail shelves for inventory control.

Namespace: DevExpress.WinUI.Controls

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

NuGet Package: DevExpress.WinUI

Declaration

public class CodeMSISymbology :
    SymbologyBase<CodeMSIGenerator>

Remarks

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

BarCode - CodeMSI Symbology

Use the barcode’s MSICheckSum property to get or set the checksum type for the barcode.

Inheritance

Object
DependencyObject
UIElement
FrameworkElement
SymbologyBase
SymbologyBase<DevExpress.WinUI.Controls.Internal.CodeMSIGenerator>
CodeMSISymbology
See Also