Reputation: 45
I am trying to find a way to configure my excel sheet to duplex printing using python.
I am currently making excel file using xlswriter but it seems there is no option for duplex printing in the document.
I could modify the excel file using some other code to allow duplex writer just before I print.
Has anyone has a way to allow duplex printing an existing document using python ?
Upvotes: 0
Views: 184
Reputation: 41544
I am currently making excel file using xlswriter but it seems there is no option for duplex printing in the document.
Duplex printing is a function of the printer and not the document so it cannot be controlled by XlsxWriter.
Upvotes: 1