3-20 SetPrintDirectionInPM
This function sets the direction of printing when it is in the Page Mode.
Int32 SetPrintDirectionInPM (Int32 direction)
[Parameters]
* Int32 direction
Returns when the function succeeds.
The printer is not in the Label Mode.
The specified argument is incorrect.
Data transmission failed.
BxlWinPhoneSDK bxlPrinter = new BxlWinPhoneSDK();
……
// Select Page Mode
if (bxlPrinter.SelectPageMode(true) != BXL_SUCCESS)
return;
bxlPrinter.SetPrintAreaInPM(0, 0, 416, 416);
bxlPrinter.SetPrintDirectionInPM(BXL_PD_LEFT_TO_RIGHT);
……
bxlPrinter.FormFeed(2);