[]
Gets the wide and narrow bar ratio.
This value represents the ratio between wide bars and narrow bars in the Code 39 barcode.
The supported values are 2 and 3. The default value is 3.
int NwRatio { get; }
ReadOnly Property NwRatio As Integer
worksheet.Range["A1"].Value = "CODE39-100";
worksheet.Range["B1"].Formula = "=BC_CODE39(A1)";
ICode39 code39 = (ICode39) worksheet.Range["B1"].Value;
int nwRatio = code39.NwRatio;