[]
Gets the size of the ECC200 symbol.
This value specifies the symbol size string used by a DataMatrix barcode when the ECC mode is ECC200.
string Ecc200SymbolSize { get; }
ReadOnly Property Ecc200SymbolSize As String
worksheet.Range["A1"].Value = "Test";
worksheet.Range["B1"].Formula = "=BC_DATAMATRIX(A1,\"rgb(0, 0, 0)\",\"rgb(255, 255, 255)\",\"" + EccMode.ECC200.ToString() + "\",\"squareAuto\",\"auto\",\"auto\",FALSE,0,0,4,4,4,4)";
IDataMatrix dataMatrix = (IDataMatrix) worksheet.Range["B1"].Value;
string symbolSize = dataMatrix.Ecc200SymbolSize;