EAN13

EAN-13 is a comparison of common end product barcode protocols and standards, mainly used in supermarkets and other retail.

You can create a EAN-13 using the BC_EAN13 function in a formula: =BC_EAN13(value, color, backgroundColor, showLabel, labelPosition, addOn, addOnLabelPosition, fontFamily, fontStyle, fontWeight, fontTextDecoration, fontTextAlign, fontSize, quietZoneLeft, quietZoneRight, quietZoneTop, quietZoneBottom). The function has the following parameters: value: this is a string that contains only numbers, and the length is between 12 and 13. addOn: this is a string that contains only numbers, and the length is between 2 and 4. addOnLabelPosition: this is the text position if text is shown.
window.onload = function () { var spread = new GC.Spread.Sheets.Workbook(document.getElementById('ss'), {sheetCount: 1}); initSpread(spread); }; function initSpread(spread) { var sheet = spread.getSheet(0); spread.suspendPaint(); _initBasicSheet(sheet); spread.resumePaint(); } function _initBasicSheet(sheet) { sheet.name('customSheet'); _setData(sheet); _setStyle(sheet); for (var row = 3; row < 6; row++) { sheet.setFormula(row, 3, '=BC_EAN13(C' + (row + 1) + ')'); sheet.setFormula(row, 4, '=BC_EAN13(C' + (row + 1) + ',,,,,22)'); sheet.setFormula(row, 5, '=BC_EAN13(C' + (row + 1) + ',,,,,22,"bottom")'); } sheet.setValue(5, 6, 'No EAN-13 generated, because the last digit is check-sum digit and it is invalid'); } function _setData(sheet) { var pos = [1, 2, 6]; for (var i = 0; i < pos.length; i++) { sheet.addSpan(1, pos[i], 2, 1); } var dataArray = [ ['Medicine', 692031229621], ['Pen', 6945091701532], [ 'value length is 13', 8142486545683 // 'No EAN-13 generated, because the last digit is check-sum digit and it is invalid' ] ]; sheet.setArray(3, 1, dataArray); sheet.addSpan(1, 3, 1, 3); sheet.setValue(1, 1, 'Name'); sheet.setValue(1, 2, 'Number'); sheet.setValue(1, 3, 'EAN-13'); sheet.setValue(1, 6, 'Explain'); sheet.setValue(2, 3, 'Default'); sheet.setValue(2, 4, 'Change addOn'); sheet.setValue(2, 5, 'Change addOnLabelPosition'); } function _setStyle(sheet) { sheet.setColumnWidth(0, 20); for (var row = 3; row < 6; row++) { sheet.setRowHeight(row, 100); } for (var col = 1; col < 7; col++) { sheet.setColumnWidth(col, 200); } sheet .getRange(1, 1, 2, 6) .foreColor('#000') .backColor('#FFF3CE') .setBorder(new GC.Spread.Sheets.LineBorder('orange', GC.Spread.Sheets.LineStyle.thin), {all: true}); sheet .getRange(1, 1, 5, 6) .vAlign(GC.Spread.Sheets.VerticalAlign.center) .hAlign(GC.Spread.Sheets.HorizontalAlign.center) .setBorder(new GC.Spread.Sheets.LineBorder('orange', GC.Spread.Sheets.LineStyle.medium), {outline: true}); sheet.getCell(5, 6).foreColor('red').wordWrap(true); }
<!doctype html> <html style="height:100%;font-size:14px;"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <link rel="stylesheet" type="text/css" href="$DEMOROOT$/en/purejs/node_modules/@mescius/spread-sheets/styles/gc.spread.sheets.excel2013white.css"> <script src="$DEMOROOT$/en/purejs/node_modules/@mescius/spread-sheets/dist/gc.spread.sheets.all.min.js" type="text/javascript"></script> <script src="$DEMOROOT$/en/purejs/node_modules/@mescius/spread-sheets-barcode/dist/gc.spread.sheets.barcode.min.js" type="text/javascript"></script> <script src="$DEMOROOT$/spread/source/js/license.js" type="text/javascript"></script> <script src="app.js" type="text/javascript"></script> <link rel="stylesheet" type="text/css" href="styles.css"> </head> <body> <div class="sample-tutorial"> <div id="ss" class="sample-tutorial"></div> </div> </body> </html>
.sample-tutorial { position: relative; height: 100%; overflow: hidden; } body { position: absolute; top: 0; bottom: 0; left: 0; right: 0; }