[]
Represents an EAN-8 barcode.
EAN-8 barcode consists of seven numeric digits and one check digit. This barcode accepts a string of seven digits, calculates the check digit, and appends it as the eighth digit.
This interface provides the barcode value together with inherited font, barcode, and label options.
public interface IEAN8 : IFontOption, IBarcode, ILabelOption
Public Interface IEAN8
Inherits IFontOption, IBarcode, ILabelOption
worksheet.Range["A1"].Formula = "=BC_EAN8(1234567)";
IEAN8 ean8 = (IEAN8) worksheet.Range["A1"].Value;
string value = ean8.Value;