Search Results for

    Show / Hide Table of Contents

    Class Code128EncodingInfo

    Contains encoding information for a Code 128 barcode, including segment breakdown.

    Inheritance
    System.Object
    Code128EncodingInfo
    Namespace: IronBarCode
    Assembly: IronBarCode.dll
    Syntax
    public class Code128EncodingInfo : Object

    Code128EncodingInfo is the report a developer reads back to learn how a string was packed into a Code 128 barcode. Code 128 switches between three character sets (A, B, and C) to pack letters, digits, and control codes as compactly as possible, and this object spells out exactly which sets were used and where. It is what you inspect when a Code 128 symbol is wider or narrower than expected and the question is why the encoder made the choices it did.

    The object describes a single Code 128 encoding rather than driving the read or write. OriginalData holds the source string that was encoded, TotalSymbols reports how many symbols the resulting barcode contains, and IsGS1 flags whether the data follows the GS1 application-identifier convention used on retail and logistics labels. The detail that makes the report useful is Segments, a List<Code128EncodingSegment> that breaks the data into runs, each tagged with the character set that encoded it.

    Read Segments to walk the encoding run by run, since that is where the set switches and their symbol costs become visible. CharacterSetSummary gives the same breakdown as a short readable string for logging or a quick console check, so a developer can confirm the layout without iterating. Treat the object as read-only output describing one barcode, not a configuration surface. Because the segment list reflects the encoder's real decisions, comparing it across inputs is the practical way to understand why one payload produced a denser symbol than another. The output data formats how-to shows how to surface read results, and the reading barcodes tutorial covers the wider read workflow.

    using IronBarCode;
    
    Code128EncodingInfo info = result.EncodingInfo;
    Console.WriteLine(info.CharacterSetSummary);
    foreach (Code128EncodingSegment segment in info.Segments)
        Console.WriteLine($"{segment.CharacterSetName}: {segment.Data}");

    The checksum and format validation how-to walks through validating encoded payloads end to end.

    Constructors

    Code128EncodingInfo()

    Declaration
    public Code128EncodingInfo()

    Properties

    CharacterSetSummary

    Gets a summary of character sets used in order.

    Declaration
    public string CharacterSetSummary { get; }
    Property Value
    Type Description
    System.String

    IsGS1

    Indicates whether this is a GS1-128 barcode (starts with FNC1).

    Declaration
    public bool IsGS1 { get; }
    Property Value
    Type Description
    System.Boolean

    OriginalData

    The original input data.

    Declaration
    public string OriginalData { get; }
    Property Value
    Type Description
    System.String

    Segments

    List of encoding segments showing how the data is encoded.

    Declaration
    public List<Code128EncodingSegment> Segments { get; }
    Property Value
    Type Description
    System.Collections.Generic.List<Code128EncodingSegment>

    TotalSymbols

    Total number of symbols in the barcode (excluding start, stop, and check digit).

    Declaration
    public int TotalSymbols { get; }
    Property Value
    Type Description
    System.Int32

    Methods

    ToString()

    Declaration
    public override string ToString()
    Returns
    Type Description
    System.String
    ☀
    ☾
    Downloads
    • Download with Nuget
    • Start for Free
    In This Article
    Back to top
    Install with Nuget
    IronBarcode_for_dotnet_log2o
    Blue key in circleGet started for FREE
    No credit card required
    Test in a live environment

    Test in production without watermarks.
    Works wherever you need it to.

    Fully-functional product

    Get 30 days of fully functional product.
    Have it up and running in minutes.

    24/5 technical support

    Full access to our support engineering team during your product trial

    Grey key in circleGet started for FREE
    The trial form was submitted successfully.
    Calendar in circleBook Free Live Demo
    No contact, no card details, no commitments Book a 30-minute, personal demo.
    Here's what to expect:

    A live demo of our product and its key features

    Get project specific feature recommendations

    All your questions are answered to make sure you have all the information you need. (No commitment whatsoever.)

    Grey key in circleBook Free Live Demo
    Your booking has been completed Check your e-mail for confirmation
    Support Team Member 6 related to The C# PDF Library Support Team Member 14 related to The C# PDF Library Support Team Member 4 related to The C# PDF Library Support Team Member 2 related to The C# PDF Library
    Online 24/5
    Need help? Our sales team would be glad to help you.
    Try the Enterprise Trial
    ironpdf_for_dotnet_log2o
    Key in blue circle
    Get your free 30-day Trial Key instantly.
    bullet_checkedNo credit card or account creation required
    Key in blue circle
    Get your free 30-day Trial Key instantly.
    Blue key in circleNo credit card or account creation required
    Green Check in orange circle
    The trial form was submitted successfully.
    badge_greencheck_in_yellowcircle
    Thank you for starting a trial

    Please check your email for the trial license key.

    If you don’t receive an email, please start a live chat or email support@ironsoftware.com

    Install with NuGet
    View Licensing
    • Logo Aetna
    • Logo NASA
    • Logo GE
    • Logo Porsche
    • Logo USDA
    • Logo Qatar
    Join Millions of Engineers who’ve tried IronBarcode