CODE49

Code 49 is a continuous, variable-length stacked symbology developed in 1987 by David Allais of Intermec Corporation. It combines some of the characteristics of Universal Product Code (UPC) and Code 39 into a single barcode language. It was the first stacked barcode symbology, and it supports the use of the full 128-character ASCII set. The code is in the public domain.

You can create a Code49 Code using the BC_CODE49 function in a formula: =BC_CODE49(value, color, backgroundColor, showLabel, labelPosition, grouping, groupNo, fontFamily, fontStyle, fontWeight, fontTextDecoration, fontTextAlign, fontSize, quietZoneLeft, quietZoneRight, quietZoneTop, quietZoneBottom) The function has the following special parameters: grouping: (default value is false) this specifies if the symbol mode is Group Alphanumeric Mode. groupNo: (default value is 0) this value represents the index of the symbol in the group.
window.onload = function () { var spread = new GC.Spread.Sheets.Workbook(document.getElementById('ss'), {sheetCount: 1}); initSpread(spread); }; var FORMULA = 'BC_CODE49'; function initSpread(spread) { var sheet = spread.getSheet(0); spread.suspendPaint(); _initCustomSheet(sheet); spread.resumePaint(); } function _initCustomSheet(sheet) { sheet.name('customSheet'); _setData(sheet); _setStyle(sheet); for (var row = 3; row < 5; row++) { var value = 'CONCAT(B' + (row + 1) + ', ": ",C' + (row + 1) + ')'; sheet.setFormula(row, 3, '=' + FORMULA + '(' + value + ')'); sheet.setFormula(row, 4, '=' + FORMULA + '(' + value + ', , , true, "top", false, 0, "Arial", "normal", 700)'); sheet.setFormula(row, 5, '=' + FORMULA + '(' + value + ', , , , , , , , , 700, "line-through", "left", "24px")'); } } function _setData(sheet) { sheet.getCell(1, 1).value('Service'); sheet.getCell(1, 2).value('Number'); sheet.getCell(1, 3).value('Code49'); sheet.getCell(2, 3).value('Default'); sheet.getCell(2, 4).value('Customer Label Font'); sheet.getCell(2, 5).value('Line Through Label'); var dataArray = [ ['Police', 911], ['Travel Info Call 511', 511] ]; sheet.setArray(3, 1, dataArray); } function _setStyle(sheet) { for (var row = 3; row < 5; row++) { sheet.setRowHeight(row, 80); } sheet.addSpan(1, 1, 2, 1) sheet.addSpan(1, 2, 2, 1) sheet.addSpan(1, 3, 1, 3) sheet.setColumnWidth(0, 20); sheet.setColumnWidth(1, 200); sheet.setColumnWidth(2, 80); sheet.setColumnWidth(3, 200); sheet.setColumnWidth(4, 200); sheet.setColumnWidth(5, 200); sheet.getRange(1, 1, 2, 5) .foreColor('#000') .backColor('#FFF3CE') .borderLeft(new GC.Spread.Sheets.LineBorder('orange', GC.Spread.Sheets.LineStyle.thin), {outline: true}) .borderBottom(new GC.Spread.Sheets.LineBorder('orange', GC.Spread.Sheets.LineStyle.thin), {outline: true}); sheet .getRange(1, 1, 4, 5) .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.getRange(1, 1, 5, 1).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; }