replied on September 30, 2014
You're more likely to get help faster if you start out by posting your code and explaining where you're having issues. It's not clear if you're just trying to export the PDF. The following snippet of code will export the PDF associated with entry ID 25753 as Doc1.PDF to C:\temp.
Laserfiche.DocumentServices.DocumentExporter DocEx = new Laserfiche.DocumentServices.DocumentExporter();
// Sets SourceDocument property.
DocumentInfo DI = Document.GetDocumentInfo(25753, RASession);
// Exports electronic document.
DocEx.ExportElecDoc(DI, "C:\\temp\\Doc1.pdf");