[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IDataMatrix.StructureNumber

StructureNumber Property

StructureNumber

Gets the structure number of the current symbol within the structured append symbols.

This property is used only when the ECC mode is ECC200.

Declaration
int StructureNumber { get; }
ReadOnly Property StructureNumber As Integer
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\",TRUE,1,10,4,4,4,4)";
IDataMatrix dataMatrix = (IDataMatrix) worksheet.Range["B1"].Value;
int structureNumber = dataMatrix.StructureNumber;