Package it.stefanobertini.zebra.cpcl.labelmode

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


public class MultilineTest {

    @Test
    public void test() {

  Multiline command = new Multiline(47, TextRotation.horizontal, new Font("4", 0), new Position(10, 20));
  command.addText("1st line of text");
  command.addText("2nd line of text");
  command.addText(":");
  command.addText("Nth line of text");

  CommandOutputBuilder output = new CommandOutputBuilder();
  output.printLn("MULTILINE 47");
  output.printLn("TEXT 4 0 10 20");
  output.printLn("1st line of text");
View Full Code Here

TOP

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

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.