[]
Gets whether the Codabar symbol requires a check digit.
Specifies whether the symbol needs a check digit. The default value is false.
bool CheckDigit { get; }
ReadOnly Property CheckDigit As Boolean
worksheet.Range["A1"].Value = "B2345678B";
worksheet.Range["B1"].Formula = "=BC_CODABAR(A1)";
ICodabar codabar = (ICodabar) worksheet.Range["B1"].Value;
bool checkDigit = codabar.CheckDigit;