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
<DescriptionAttribute("Barcode reader interprets FNC4 symbols in Code 128 barcode and shifts barcode characters to extended ASCII table.")>
<DefaultValueAttribute(True)>
Public Property Code128UseFnc4ShiftToExtendedAsciiTable As Boolean
[Description("Barcode reader interprets FNC4 symbols in Code 128 barcode and shifts barcode characters to extended ASCII table.")]
[DefaultValue(True)]
public bool Code128UseFnc4ShiftToExtendedAsciiTable { get; set; }
[Description("Barcode reader interprets FNC4 symbols in Code 128 barcode and shifts barcode characters to extended ASCII table.")]
[DefaultValue(True)]
public: __property bool get_Code128UseFnc4ShiftToExtendedAsciiTable();
public: __property void set_Code128UseFnc4ShiftToExtendedAsciiTable(
bool
);
[Description("Barcode reader interprets FNC4 symbols in Code 128 barcode and shifts barcode characters to extended ASCII table.")]
[DefaultValue(True)]
public:
property bool Code128UseFnc4ShiftToExtendedAsciiTable {
bool get();
void set(bool );
}
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 10; .NET 9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5
See Also