EnumCheckMSI
Specifies the check digit algorithms used for MSI barcode validation. These algorithms are used to calculate and verify check digits in MSI barcodes to ensure data integrity.
Definition
Namespace:Telerik.Maui.Controls.Barcode
Assembly:Telerik.Maui.Controls.dll
Syntax:
public enum CheckMSI
Fields
Modulo10
Uses the Modulo 10 algorithm for check digit calculation. This is a simple checksum algorithm that uses the sum of digits modulo 10.
Modulo1010
Uses a double Modulo 10 algorithm for enhanced check digit calculation. This applies the Modulo 10 algorithm twice for increased data integrity verification.
Modulo11
Uses the Modulo 11 algorithm for check digit calculation. This algorithm provides better error detection than Modulo 10 by using weighted digit positions.
Modulo1110
Uses a combination of Modulo 11 and Modulo 10 algorithms for check digit calculation. This provides the strongest error detection by combining both validation methods.