# BC_DATAMATRIX

## Content

This function returns a data set representing a DATAMATRIX.

## Syntax

`BC_DataMatrix(value, color, backgroudColor, eccMode, ecc200SymbolSize, ecc200EndcodingMode, ecc00\_140Symbole, structureAppend, structureNumber, fileIdentifier, quietZoneRight, quietZoneTop, quietZoneBottom)`

## Arguments

| Argument | Description |
| -------- | ----------- |
| *value* | A string that represents encodes on the symbol of QRCode. |
| *color* | A color that represents the barcode color. The default value is 'rgb(0,0,0)'. |
| *backgroundColor* | A color that represents the barcode background color. The default value is 'rgb(255, 255, 255)' |
| *eccMode* | A value that represents which ECC mode to use. It has the following values : 'ECC000, ECC050, ECC080, ECC100, ECC140, ECC200'. |
| *ecc200SymbolSize* | A value that specifies which encoding mode to use for the symbol. The default value is 'auto'. |
| *ecc200EndcodingMode* | A value that represents which code is set to use for QRCode. It has 'auto |
| *ecc00\_140Symbole* | A value that specifies the size of the ECC000-140 symbol only. The default value is 'auto'. |
| *structureAppend* | Specifies whether the symbol is part of a structured append message ECC200 only. The default value is 'false'. |
| *structureNumber* | A value that represents which block the symbol is in the structured append message. It has the value '0-15', only for ECC200. The default value is '0'. |
| *fileIdentifier* | A value that specifies the file identification. It has values '1-254', only for ECC200. The default value is '0'. |
| *quietZoneRight* | A value that represents the size of right quiet zone. |
| *quietZoneTop* | A value that represents the size of top quiet zone. |
| *quietZoneBottom* | A value that represents the size of bottom quiet zone. |

## Data Types

Accepts two-dimensional barcode. Returns barcode sparkline.

## Examples

`sheet.setFormula(3, 3, '=BC_DataMatrix(C4)');`