I have a question about the print length on the printer Bixolon SPP-R410. I developed the code in C# for printing using their SDK, but I'm having trouble adjusting the length of the print on the paper.
I set the area to be printed using the code below, but when i have more text to print and set the height parameter above 3000 the printer doesn't accept it and prints the text up to about 2600.
BxlPrint.SetPrintAreaInPM(0, 0, 879, 3000);
How can i set it to print longer texts than 3000 height?
Note: the code was developed for the Windows operating system.
I tried with changes to the printer driver, various changes in the code but to no avail.