[SOLVED] Escape Sequence for bold the text while printing
General and Desktop
2
Posts
1
Posters
4.2k
Views
1
Watching
-
wrote on 26 Aug 2014, 08:27 last edited by
Hi,
I want to make my printing header text as BOLD. I am using Bixolon printers. i tried few sequences, but it's not working? What is the exact escape sequence for Bold.
I have tried ESC E & ESC 1M. But it is not working.
printtext ="\u001BE" + printtext + "\n";
can anyone help me with this?
-
wrote on 26 Aug 2014, 09:30 last edited by
I tried \x1BG1 and it is working fine.
printtext =ā \x1BG1ā + printtext + ā\nā;
1/2