Skip to main content

CodeMSIGenerator.MSICheckSum Property

Gets or sets the checksum type for the bar code.

Namespace: DevExpress.XtraPrinting.BarCode

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

NuGet Package: DevExpress.Printing.Core

Declaration

[DefaultValue(MSICheckSum.Modulo10)]
public MSICheckSum MSICheckSum { get; set; }

Property Value

Type Default Description
MSICheckSum Modulo10

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 bar code. To avoid calculating a checksum for an MSI bar code, set this property’s value to MSICheckSum.None.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the MSICheckSum property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also