[]
Gets the code set used by the Code 128 barcode.
This value determines which Code 128 code set is used to encode the barcode text.
Supported values are "auto", "A", "B", and "C".
The default value is "auto".
string CodeSet { get; }
ReadOnly Property CodeSet As String
worksheet.Range["A1"].Value = "123456789";
worksheet.Range["B1"].Formula = "=BC_CODE128(A1,\"rgb(0, 0, 0)\",\"rgb(255, 255, 255)\",1,\"bottom\",\"auto\",,\"normal\",\"normal\",\"none\",\"center\",12,10,10,0,0)";
ICode128 code128 = (ICode128) worksheet.Range["B1"].Value;
string codeSet = code128.CodeSet;