I need to print labels on my ZEBRA S4M printer.
PrintDocument pd = new PrintDocument { PrinterSettings = new PrinterSettings { PrinterName = "ZDesigner S4M-203dpi ZPL" } };
pd.DefaultPageSettings.Landscape = true;
pd.PrintPage += new PrintPageEventHandler(pd_PrintPage);
pd.Print();
And when using Portrait landscape - it s alright, but in Landscape mode I have a big space from the left side of label.. How can I print a horizontal text on my labels?
感谢很多。
ADDED
我认为,这个问题之所以可能,是因为我可以改变少量印刷业。 它的面积为300x200,实际纸面尺寸约为200x500。