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

MSICheckSum Enum

Specifies which formula is used to calculate the checksum for the MSI bar code.

Namespace: DevExpress.XtraPrinting.BarCode

Assembly: DevExpress.Printing.v18.2.Core.dll

Declaration

[TypeConverter(typeof(EnumTypeConverter))]
[ResourceFinder(typeof(ResFinder))]
public enum MSICheckSum

Members

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.

Related API Members

The following properties accept/return MSICheckSum values:

Library Related API Members
Cross-Platform Class Library CodeMSIGenerator.MSICheckSum
WPF Controls BarCodePropertyProvider.MSICheckSum

Remarks

Use this enumeration’s values to specify how the MSI bar code’s checksum is calculated via the CodeMSIGenerator.CalcCheckSum property.

See Also