CodeMSISymbology.MSICheckSum Property
In This Article
Gets or sets the checksum type for the bar code.
Namespace: DevExpress.WinUI.Controls
Assembly: DevExpress.WinUI.BarCode.v23.2.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. |
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. |
Double |
The checksum is calculated with respect to base 10 twice. |
See Also