ahh yes the english language

This commit is contained in:
Djeeberjr 2022-02-28 01:31:08 +01:00
parent 1db2e55b2b
commit 2b9f62b239

View File

@ -18,7 +18,7 @@ public class BarcodeInstruction : BaseInstruction
public Alignment alignment {get; set; } = Alignment.Left;
[JsonConverter(typeof(JsonStringEnumConverter))]
public BarLabelPrintPosition lablePos {get; set; } = BarLabelPrintPosition.Below;
public BarLabelPrintPosition labelPos {get; set; } = BarLabelPrintPosition.Below;
// [JsonConverter(typeof(JsonStringEnumConverter))]
// public BarWidth width { get; set; } = BarWidth.Default;
@ -36,8 +36,8 @@ public class BarcodeInstruction : BaseInstruction
commands.Add(alignmentCommand(alignment));
if (lablePos != BarLabelPrintPosition.Below){
commands.Add(e.SetBarLabelPosition(lablePos));
if (labelPos != BarLabelPrintPosition.Below){
commands.Add(e.SetBarLabelPosition(labelPos));
}
if (height > 0)