-
Notifications
You must be signed in to change notification settings - Fork 1
4. Installation
Integrating PdfFileWriter
to your application requires the following steps. Install the attached PdfFileWriter.dll
file in your development area. Start the Visual C# program and open your application. Go to the Solution Explorer, right click on References and select Add Reference. Select the Browse tab and navigate your file system to the location of the PdfFileWriter.dll
. When your application is published, the PdfFileWriter.dll
must be included.
Source code documentation is available in as a help file PdfFileWriter.chm
. The file is produced by Sandcastle. The result looks like Microsoft documentation pages.
If you want access to the source code of the PdfFileWriter
project, install the PdfFileWriter
project in your development area. The PdfFileWriter.dll
will be in PdfFileWriter\bin\Release
directory.
Add the following statement to all source modules using this library.
using PdfFileWriter;
If you intend to use charting, you need to add reference to: System.Windows.Forms.Visualization
. In each source module using Chart you need to add
using System.Windows.Forms.DataVisualization.Charting;
The source code is also available at https://github.com/Uzi-Granot/PdfFileWriter.
The binary file can be used from nuget: https://www.nuget.org/packages/PdfFileWriter/
This page is a copy from https://www.codeproject.com/Articles/570682/PDF-File-Writer-Csharp-Class-Library by Uzi Granot. The article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL). All rights to the texts and source code remain with Uzi Granot.