tags:

views:

40

answers:

1

I there any possibility to access specific printer option(stapling) from .Net.

A: 

If you are using a printer driver and PrinterSettings, then you might want to take a look at this:

Programmatically selecting complex printer options in C#

or

Serialize Printer Settings

My guess is that these settings are in PJL so the alternative is to produce your own PCL/PS for the job and then simply insert the PJL at the top of the file. You can then send using:

How to send raw data to a printer by using Visual C# .NET

Douglas Anderson