[]
Gets a value indicating whether the current symbol is part of structured append symbols.
Structured append is only supported by ECC200.
bool StructureAppend { get; }
ReadOnly Property StructureAppend As Boolean
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\",TRUE,1,10,4,4,4,4)";
IDataMatrix dataMatrix = (IDataMatrix) worksheet.Range["B1"].Value;
bool structureAppend = dataMatrix.StructureAppend;