PDF Focus .Net - .Net assembly to convert PDF to Word (RTF)
version 1.0.2.0 (July 17th, 2008)
   HelpContent | About PDF Focus .Net| Methods and properties | Samples of using in C#, VB.Net, ASP.Net | Purchase | License | Support and Contanst

PDF Focus .Net - methods and properties description

The component can convert files(strings) into Pdf files (strings) with images, tables, etc.
This scheme shows all methods and properties of DLL, but you can use not all of members, because all of them is already set by default to make conversion more precision.

Methods:

ConvertFile()

ConvertFileToString()

Properties:

(Empty)
int ConvertFile(string pdfFile, string destFile, string pass) - this method takes PDF file path and returns result code:

0 - file converted without errors;
1 - have error an converting;
2 - error to create output file.
Example:
SautinSoft.PdfFocus p = new SautinSoft.PdfFocus();
p.ConvertFile(
"d:\\Example.pdf","d:\\Example.rtf", "");
string ConvertFileToString(string pdfFile, string destFile, string pass) - this method takes PDF file path and returns RTF string: Example:
SautinSoft.PdfFocus p = new SautinSoft.PdfFocus();
string RTFstring = p.ConvertFileToString("d:\\Example.pdf","d:\\Example.rtf", "");