public byte[] SetBarLabelPosition(BarLabelPrintPosition position) => new byte[]
 {
     Cmd.GS, Barcodes.SetBarLabelPosition, (byte)position
 };
Example #2
0
 public byte[] SetBarLabelPosition(BarLabelPrintPosition position)
 {
     return(new[] { Cmd.GS, Barcodes.SetBarLabelPosition, (byte)position });
 }
Example #3
0
 public DirectPrinter SetBarLabelPosition(BarLabelPrintPosition position)
 {
     UpdateBuffer(this.Emitter.SetBarLabelPosition(position));
     return(this);
 }