diff --git a/Instructions/BarcodeInstruction.cs b/Instructions/BarcodeInstruction.cs index cb3533b..38c840e 100644 --- a/Instructions/BarcodeInstruction.cs +++ b/Instructions/BarcodeInstruction.cs @@ -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)