[]
Gets the structure number of the current symbol within the structured append symbols.
This property is used only when the ECC mode is ECC200.
int StructureNumber { get; }
ReadOnly Property StructureNumber As Integer
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;
int structureNumber = dataMatrix.StructureNumber;