Skip to main content

BarCodePropertyProvider.MSICheckSum Property

Gets or sets the checksum type for the barcode.

Namespace: DevExpress.Xpf.Editors

Assembly: DevExpress.Xpf.Core.v23.2.dll

NuGet Package: DevExpress.Wpf.Core

Declaration

[ValueSerializer(typeof(XamlEnumSerializer<MSICheckSum>))]
public MSICheckSum MSICheckSum { get; set; }

Property Value

Type Description
MSICheckSum

An MSICheckSum enumeration value which represents the checksum type.

Available values:

Name Description
None

The checksum is not calculated.

Modulo10

The checksum is calculated with respect to base 10.

DoubleModulo10

The checksum is calculated with respect to base 10 twice.

Remarks

Use this property to specify the checksum method, which defines the appearance of checksum bars added to the barcode. To avoid calculating a checksum for an MSI barcode, set this property’s value to MSICheckSum.None.

See Also