Send an existing PDF file to a printer
Namespace:
bioPDF.PdfWriter
Assembly:
bioPDF.PdfWriter (in bioPDF.PdfWriter.dll)
Syntax
Visual Basic (Declaration) |
---|
Public Sub PrintPdf ( _
pdfFileName As String, _
printerSelection As String, _
printToPrinterName As String, _
pdfPrinterName As String, _
showProgress As Boolean, _
bitsPerPixel As Integer, _
documentName As String, _
maxResolution As Integer, _
scaleToFit As Boolean, _
firstPage As Integer, _
lastPage As Integer, _
timeoutMilliseconds As Integer _
) |
C# |
---|
public void PrintPdf(
string pdfFileName,
string printerSelection,
string printToPrinterName,
string pdfPrinterName,
bool showProgress,
int bitsPerPixel,
string documentName,
int maxResolution,
bool scaleToFit,
int firstPage,
int lastPage,
int timeoutMilliseconds
) |
Visual C++ |
---|
public:
virtual void PrintPdf(
String^ pdfFileName,
String^ printerSelection,
String^ printToPrinterName,
String^ pdfPrinterName,
bool showProgress,
int bitsPerPixel,
String^ documentName,
int maxResolution,
bool scaleToFit,
int firstPage,
int lastPage,
int timeoutMilliseconds
) sealed |
JavaScript |
---|
function printPdf(pdfFileName, printerSelection, printToPrinterName, pdfPrinterName, showProgress, bitsPerPixel, documentName, maxResolution, scaleToFit, firstPage, lastPage, timeoutMilliseconds); |
See Also