BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
usingSyncfusion.DocIO; usingSyncfusion.DocIO.DLS; usingSyncfusion.DocToPDFConverter; usingSyncfusion.Pdf;
Code:
WordDocumentdocument=newWordDocument(path,Syncfusion.DocIO.FormatType.Doc); DocToPDFConverterconverter=newDocToPDFConverter();PdfDocumentpdfDoc=converter.ConvertToPDF(document);
My problem is when compiling it gives me errors:
Error 24 The type or namespace name 'DocIO' does not exist in the namespace 'Syncfusion' (are you missing an assembly reference?)
Error 25 The type or namespace name 'DocToPDFConverter' does not exist in the namespace 'Syncfusion' (are you missing an assembly reference?)
Error 26 The type or namespace name 'Pdf' does not exist in the namespace 'Syncfusion' (are you missing an assembly reference?)
I have added references according to article:
https://help.syncfusion.com/file-formats/pdf/working-with-document-conversions#converting-word-documents-to-pdf
Error 25 The type or namespace name 'DocToPDFConverter' does not exist in the namespace 'Syncfusion' (are you missing an assembly reference?)