[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ICode39.CheckDigit

CheckDigit Property

CheckDigit

Gets whether the Code 39 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 = "CODE39-100";
worksheet.Range["B1"].Formula = "=BC_CODE39(A1)";
ICode39 code39 = (ICode39) worksheet.Range["B1"].Value;
bool checkDigit = code39.CheckDigit;