[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IGS1128

IGS1128 Interface

Represents a GS1-128 barcode.

GS1-128 is a barcode that uses a series of application identifiers to encode data. This barcode makes use of the complete ASCII character set while also using the FNC1 character in the first character position.

This interface extends IBarcode, ILabelOption, and IFontOption to provide barcode content, label, and font-related options for a GS1-128 barcode.

Namespace: GrapeCity.Documents.Excel
Assembly: DS.Documents.Excel.dll
Syntax
public interface IGS1128 : IBarcode, ILabelOption, IFontOption
Public Interface IGS1128
    Inherits IBarcode, ILabelOption, IFontOption
Examples
worksheet.Range["A1"].Value = "123456789";
worksheet.Range["B1"].Formula = "=BC_GS1_128(A1)";
IGS1128 barcode = (IGS1128) worksheet.Range["B1"].Value;
string value = barcode.Value;