Last active
August 15, 2022 08:31
Revisions
-
aspose-com-gists revised this gist
Aug 15, 2022 . 1 changed file with 1 addition and 0 deletions.There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1 @@ You can find more details at: [Convert OneNote to Excel in C#](https://blog.aspose.com/2022/08/04/convert-onenote-to-excel-csharp/) -
aspose-com-gists renamed this gist
Aug 5, 2022 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
aspose-com-gists created this gist
Aug 5, 2022 .There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ // Load the OneNote .one file using Document class. Aspose.Note.Document oneFile = new Aspose.Note.Document("Aspose.one"); // Export the .one file as PDF oneFile.Save(memoryStream, Aspose.Note.SaveFormat.Pdf); // Load the file using Aspose.PDF Document class. Aspose.Pdf.Document file = new Aspose.Pdf.Document(memoryStream); // Convert the OneNote .one file as Excel worksheet. file.Save("SaveOutput.xlsx", Aspose.Pdf.SaveFormat.Excel);