[]
Represents a Code 93 linear barcode.
Code 93 uses uppercase characters, numeric characters, and selected special characters, and provides barcode, font, and label options through IBarcode, IFontOption, and ILabelOption.
public interface ICode93 : IBarcode, IFontOption, ILabelOption
Public Interface ICode93
Inherits IBarcode, IFontOption, ILabelOption
worksheet.Range["A1"].Value = "CODE93+100";
worksheet.Range["B1"].Formula = "=BC_CODE93(A1)";
ICode93 code93 = (ICode93) worksheet.Range["B1"].Value;
bool fullASCII = code93.FullASCII;
| Name | Description |
|---|---|
| CheckDigit | Gets whether the Code 93 symbol requires a check digit. Specifies whether the symbol needs a check digit. The default value is |
| FullASCII | Gets whether full ASCII is supported for Code 93. Specifies whether to support full ASCII for Code 93. The default value is |