[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ICodabar.CheckDigit

CheckDigit Property

CheckDigit

Gets whether the Codabar symbol requires a check digit.

Specifies whether the symbol needs a check digit. The default value is false.

Declaration
bool CheckDigit { get; }
ReadOnly Property CheckDigit As Boolean
Examples
worksheet.Range["A1"].Value = "B2345678B";
worksheet.Range["B1"].Formula = "=BC_CODABAR(A1)";
ICodabar codabar = (ICodabar) worksheet.Range["B1"].Value;
bool checkDigit = codabar.CheckDigit;