Implementing Code using .NET Client Library
Basic usage for conversion :
Imports pdfhandy
'Initialize the client library
Dim client As New pdfhandyapi
'Insert API key
client.APIKey = "your-api-key"
'Provide filepath for file conversion.
client.Doc2Pdf("path/to/file/inputfile.doc", "path/to/file/outputfile.pdf")
using pdfhandy;
//Initialize the client library
pdfhandyapi client = new pdfhandyapi();
//Insert API key
client.APIKey = "your-api-key";
//Provide filepath for file conversion.
client.Doc2Pdf("path/to/file/inputfile.doc", "path/to/file/outputfile.pdf");