Skip to main content
A newer version of this page is available. .

CodeMSISymbology.MSICheckSum Property

Gets or sets the checksum type for the bar code.

Namespace: DevExpress.WinUI.Controls

Assembly: DevExpress.WinUI.BarCode.v22.1.dll

NuGet Package: DevExpress.WinUI

Declaration

[DP(MSICheckSum.Modulo10, Handler = "MSICheckSumPropertyChanged")]
[TypeConverter(typeof(XamlEnumTypeConverter<MSICheckSum>))]
public MSICheckSum MSICheckSum { get; set; }

Property Value

Type Description
DevExpress.WinUI.Controls.Internal.MSICheckSum

The checksum type.

Remarks

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

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.
See Also