VintaSoft Barcode .NET SDK 14.3: Documentation for .NET developer
Vintasoft.Barcode Namespace / ReaderSettings Class / Code128UseFnc4ShiftToExtendedAsciiTable Property
Syntax Remarks Requirements SeeAlso
In This Topic
    Code128UseFnc4ShiftToExtendedAsciiTable Property (ReaderSettings)
    In This Topic
    Gets or sets a value indicating whether the barcode reader interprets FNC4 symbols in Code 128 barcode and shifts barcode characters to extended ASCII table (128..255 byte values).
    Syntax
    'Declaration
    
    <DefaultValueAttribute(True)>
    <DescriptionAttribute("Barcode reader interprets FNC4 symbols in Code 128 barcode and shifts barcode characters to extended ASCII table.")>
    Public Property Code128UseFnc4ShiftToExtendedAsciiTable As Boolean
    
    
    [DefaultValue(True)]
    [Description("Barcode reader interprets FNC4 symbols in Code 128 barcode and shifts barcode characters to extended ASCII table.")]
    public bool Code128UseFnc4ShiftToExtendedAsciiTable { get; set; }
    
    
    [DefaultValue(True)]
    [Description("Barcode reader interprets FNC4 symbols in Code 128 barcode and shifts barcode characters to extended ASCII table.")]
    public: __property bool get_Code128UseFnc4ShiftToExtendedAsciiTable();
    public: __property void set_Code128UseFnc4ShiftToExtendedAsciiTable(
    bool value
    );
    [DefaultValue(True)]
    [Description("Barcode reader interprets FNC4 symbols in Code 128 barcode and shifts barcode characters to extended ASCII table.")]
    public:
    property bool Code128UseFnc4ShiftToExtendedAsciiTable { bool get(); void set(bool value); }

    Property Value

    false - if barcode contains FNC4 symbols: FNC4 symbol is not interpreted, barcode contains only ASCII symbols (0..127 byte values);
    true - if barcode contains FNC4 symbols: FNC4 symbols interpreted and excluded from barcode value, barcode value contains extended ASCII symbols (0..255 byte values).
    Default value is true.
    Remarks

    This function based on FNC4 symbol, see Code128 specification.

    Requirements

    Target Platforms: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also