[]
Gets whether full ASCII is supported for Code 39.
When this property is true, the barcode can encode ASCII characters beyond
the standard Code 39 character set. The default value is false.
bool FullASCII { get; }
ReadOnly Property FullASCII As Boolean
worksheet.Range["A1"].Value = "Code39+100";
worksheet.Range["B1"].Formula = "=BC_CODE39(A1,,,,,,,,TRUE)";
ICode39 code39 = (ICode39) worksheet.Range["B1"].Value;
bool fullASCII = code39.FullASCII;