Skip to main content
All docs
V26.1
  • Code128Options.Charset Property

    Gets or sets the barcode charset type.

    Namespace: DevExpress.Docs.Barcode

    Assembly: DevExpress.Docs.Core.v26.1.dll

    Declaration

    public Code128CharacterSet Charset { get; set; }

    Property Value

    Type Description
    Code128CharacterSet

    The used charset.

    Available values:

    Name Description
    CharsetA

    The “A” character encodes barcodes using ASCII characters 00-95.

    CharsetB

    The “B” character set encodes barcodes using ASCII characters 32-127.

    CharsetC

    The “C” character encodes barcodes as digit pairs from 00 to 99. Each pair is encoded as a single code element, so the input must consist of digit pairs (for example, 01 23), not individual digits such as 123.

    CharsetAuto

    The character set is determined automatically according to the barcode text.

    See Also