Class Code128ExtendedParameters

Code128ExtendedParameters class

Stores special data of Code128 recognized barcode

Represents the recognized barcode’s region and barcode angle

public sealed class Code128ExtendedParameters : BaseExtendedParameters

Properties

NameDescription
Code128DataPortions { get; }Gets Code128DataPortion array of recognized Code128 barcode
IsEmpty { get; }Tests whether all parameters has only default values

Methods

NameDescription
override Equals(object)Returns a value indicating whether this instance is equal to a specified Code128ExtendedParameters value.
override GetHashCode()Returns the hash code for this instance.
override ToString()Returns a human-readable string representation of this Code128ExtendedParameters.
operator ==Returns a value indicating whether the first Code128ExtendedParameters value is equal to the second.
operator !=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 (BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.Code128, "12345"))
{
    generator.Save(@"c:\test.png");
}
using (BarCodeReader reader = new BarCodeReader(@"c:\test.png", DecodeType.Code128))
{
    foreach (BarCodeResult result in reader.ReadBarCodes())
    {
        Console.WriteLine("BarCode Type: " + result.CodeTypeName);
        Console.WriteLine("BarCode CodeText: " + result.CodeText);
        Console.WriteLine("Code128 Data Portions: " + result.Extended.Code128);
    }
}
[VB.NET]
Using generator As New BarcodeGenerator(EncodeTypes.Code128, "12345")
    generator.Save("c:\test.png")
End Using
Using reader As New BarCodeReader("c:\test.png", DecodeType.Code128)
    For Each 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

See Also