[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ICode93.FullASCII

FullASCII Property

FullASCII

Gets whether full ASCII is supported for Code 93.

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

Declaration
bool FullASCII { get; }
ReadOnly Property FullASCII As Boolean
Examples
worksheet.Range["A1"].Value = "Code93+100";
worksheet.Range["B1"].Formula = "=BC_CODE93(A1,\"rgb(0, 0, 0)\",\"rgb(255, 255, 255)\",1,\"bottom\",FALSE,TRUE,,\"normal\",\"normal\",\"none\",\"center\",12,10,10,0,0)";
ICode93 code93 = (ICode93) worksheet.Range["B1"].Value;
bool fullASCII = code93.FullASCII;