[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IDataMatrix.Ecc200SymbolSize

Ecc200SymbolSize Property

Ecc200SymbolSize

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.

Declaration
string Ecc200SymbolSize { get; }
ReadOnly Property Ecc200SymbolSize As String
Examples
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;