Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

BarCodePropertyProvider.MSICheckSum Property

Gets or sets the checksum type for the barcode.

Namespace: DevExpress.Xpf.Editors

Assembly: DevExpress.Xpf.Core.v24.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