Package it.stefanobertini.zebra.cpcl.labelmode

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


public class ScalableConcatTest {

    @Test
    public void test() {
  ScalableConcat command = new ScalableConcat(Orientation.horizontal, new Position(0, 20));
  command.addBitmapText(new Font("4", 1), 0, "2/");
  command.addScalableText("PLL_LAT.CSF", 20, 20, 15, "$");
  command.addScalableText("PLL_LAT.CSF", 40, 40, 0, "22");
  command.addScalableText("PLL_LAT.CSF", 20, 20, 0, "99");

  CommandOutputBuilder output = new CommandOutputBuilder();
  output.printLn("CONCAT 0 20");
  output.printLn("ST 4 1 0.0 2/");
  output.printLn("ST PLL_LAT.CSF 20 20 15.0 $");
View Full Code Here

TOP

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

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.