PDFFilePrint 1.0.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package PDFFilePrint --version 1.0.0.1
NuGet\Install-Package PDFFilePrint -Version 1.0.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="PDFFilePrint" Version="1.0.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PDFFilePrint --version 1.0.0.1
#r "nuget: PDFFilePrint, 1.0.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install PDFFilePrint as a Cake Addin
#addin nuget:?package=PDFFilePrint&version=1.0.0.1

// Install PDFFilePrint as a Cake Tool
#tool nuget:?package=PDFFilePrint&version=1.0.0.1

A .Net 4.0 component for printing PDF files to a printer.

Install the nuget package in your project by writing "install-package PDFFilePrint" in the Package Manager Console.

When the manager is added to your project the config file will have added these default settings:

<add key="PDFFilePrint.PrinterName" value="Microsoft XPS Document Writer" />
<add key="PDFFilePrint.PaperName" value="A4" />
<add key="PDFFilePrint.PrintToFile" value="true" />
<add key="PDFFilePrint.Copies" value="1" />
<add key="PDFFilePrint.DefaultPrintToDirectory" value="c:\temp" />

After installation you can use it by writing:

FilePrint fileprint = new FilePrint("MyPDFFileName.pdf", null);

You can also use it to print to a file. If this is what you need set the correct settings and feed the components with a distination filename also.

FilePrint fileprint = new FilePrint("MyPDFFileName.pdf", MyXPSFileName.xps);

Thats it, enjoy.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.3 4,620 2/10/2020
1.0.0.1 543 2/9/2020

Initial release made for the Dispatch project