[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ICode93.CheckDigit

CheckDigit Property

CheckDigit

Gets whether the Code 93 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 = "CODE93+100";
worksheet.Range["B1"].Formula = "=BC_CODE93(A1)";
ICode93 code93 = (ICode93) worksheet.Range["B1"].Value;
bool checkDigit = code93.CheckDigit;