Package it.stefanobertini.zebra.cpcl.labelmode

Examples of it.stefanobertini.zebra.cpcl.labelmode.Concat


public class ConcatTest {

    @Test
    public void test() {
  Concat command = new Concat(Orientation.horizontal, new Position(1, 2));
  command.addText(new Font("3", 4), 5, "First line");
  command.addText(new Font("7", 8), 9, "Second line");

  CommandOutputBuilder output = new CommandOutputBuilder();
  output.printLn("CONCAT 1 2");
  output.printLn("3 4 5 First line");
  output.printLn("7 8 9 Second line");
View Full Code Here

TOP

Related Classes of it.stefanobertini.zebra.cpcl.labelmode.Concat

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.