You can find more details at: Convert OneNote to Excel in C#
Last active
August 15, 2022 08:31
Convert OneNote to Excel XLS XLSX in C#
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 characters
// 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); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment