[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IDataMatrix.FileIdentifier

FileIdentifier Property

FileIdentifier

Gets the file identifier of a related group of structured append symbols.

This property applies to ECC200 structured append symbols. The valid file identifier value is within the range [1, 254]. A value of 0 indicates that the file identifier is calculated automatically.

Declaration
int FileIdentifier { get; }
ReadOnly Property FileIdentifier 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 fileIdentifier = dataMatrix.FileIdentifier;