[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ICode93

ICode93 Interface

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.

Namespace: GrapeCity.Documents.Excel
Assembly: DS.Documents.Excel.dll
Syntax
public interface ICode93 : IBarcode, IFontOption, ILabelOption
Public Interface ICode93
    Inherits IBarcode, IFontOption, ILabelOption
Examples
worksheet.Range["A1"].Value = "CODE93+100";
worksheet.Range["B1"].Formula = "=BC_CODE93(A1)";
ICode93 code93 = (ICode93) worksheet.Range["B1"].Value;
bool fullASCII = code93.FullASCII;

Properties

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 false.

FullASCII

Gets whether full ASCII is supported for Code 93.

Specifies whether to support full ASCII for Code 93. The default value is false.