You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Returns a value indicating if the first Code128ExtendedParameters value is different from the second.
Examples
This sample shows how to get code128 raw values
[C#]using(BarcodeGeneratorgenerator=newBarcodeGenerator(EncodeTypes.Code128,"12345")){generator.Save(@"c:\test.png");}using(BarCodeReaderreader=newBarCodeReader(@"c:\test.png",DecodeType.Code128)){foreach(BarCodeResultresultinreader.ReadBarCodes()){Console.WriteLine("BarCode Type: "+result.CodeTypeName);Console.WriteLine("BarCode CodeText: "+result.CodeText);Console.WriteLine("Code128 Data Portions: "+result.Extended.Code128);}}[VB.NET]Usinggenerator As New BarcodeGenerator(EncodeTypes.Code128, "12345")generator.Save("c:\test.png")EndUsing
Using reader As New BarCodeReader("c:\test.png",DecodeType.Code128)ForEach result As BarCodeResult In reader.ReadBarCodes()Console.WriteLine("BarCode Type: "+result.CodeTypeName)
Console.WriteLine("BarCode CodeText: "+result.CodeText)
Console.WriteLine("Code128 Data Portions: "+result.Extended.Code128)
Next
End Using