2017-11-15 9 views
0

私はファイルを優れていると私は.Iが試し aspose.word によって作成された私の.docxのファイルにそこからシートをインポートしたいですInsertOleObjectしかし、これはテーブルを表示せず、Excelファイルにリンクされたオブジェクトシェイプを表示するだけでした。語でのインポートExcelの表シートに

答えて

2

残念ながら、Excel文書をWordに直接変換する方法はありません。しかし、Aspose.CellsとAspose.Pdfのコラボレーションで可能です。 Aspose.Cellsを使用してExcelドキュメントをPDFに変換し、後でAspose.Pdfを使用してPDFドキュメントをWordドキュメントに変換します。以下のサンプルコードをチェックしてください。

//Use Aspose.Cells to convert XLS to Word document 
Aspose.Cells.Workbook workbook = new Aspose.Cells.Workbook("Book1.xls"); 
// To convert first sheet only you need to hide other worksheets 
workbook.Worksheets[1].IsVisible = false; 
// Save the XLS document into PDF document 
workbook.Save("output.pdf", Aspose.Cells.SaveFormat.Pdf); 
//Use Aspose.Pdf to convert PDF to Word document 
// Open the source PDF document 
Aspose.Pdf.Document pdfDocument = new Aspose.Pdf.Document("output.pdf"); 
// Save the PDF file into Word document 
pdfDocument.Save("PDFToDOCX_out.docx", Aspose.Pdf.SaveFormat.DocX); 

は、私は、開発者エバンジェリストとしてのAsposeで動作します。

関連する問題