I would like to write multiple lines on a printout, but my code is printing them out on top of eachother. I am using CPCL in Android.
String cpclData = "! 0 200 200 210 1\r\n"
+ "TEXT 5 0 20 10 " + receiptString() + " \r\n" //type, font, size, x position, y position, data
+ "FORM\r\n"
+ "PRINT\r\n";
connection.write(cpclData.getBytes());
How can multiple lines be achieved?
New Line when printing with CPCL |
1 Replies
receiptString() returns the String:
"Line 1 \r Line2 \r Line3"