We are pleased to announce the new version of Aspose.Note for .NET 1.4.0. In this major build, we have optimized the parsing algorithm of OneNote document, and border lines of the table can be preserved in the output PDF and thumbnail formats. We have also added a new generic approach to retrieve OneNote document nodes and the older one has been marked as obsolete. This release also includes the most recent bug fixes along with the above enhancements.

Retrieve OneNote Document Nodes

Old sample code (.NET, C#):

// load OneNote document
Aspose.Note.Document oneFile = new Aspose.Note.Document(@"Test.one");
// retrieve RichText type nodes
IList<Node> richTextNodes = oneFile.GetChildNodes(Aspose.Note.NodeType.RichText);
// retrieve a particular node from the collection
Aspose.Note.RichText firstTextNode = (Aspose.Note.RichText)richTextNodes[0];

New sample code (.NET, C#):

// load OneNote document
Aspose.Note.Document oneFile = new Aspose.Note.Document(@"Test.one");
// retrieve RichText type nodes
IList<RichText> richTextNodes = oneFile.GetChildNodes<RichText>();
// retrieve a particular node from the collection
Aspose.Note.RichText firstTextNode = richTextNodes[0];

This release comprises a number of key fixes that help us improve accuracy, performance and rendering capabilities.

  • Fixed: OneNote to PDF conversion, can’t open the output PDF file.

  • Fixed: OneNote to PDF conversion, some words cannot be shown.

  • Fixed: OneNote to PDF conversion, the table borders are not preserved.

  • Fixed: OneNote to PDF conversion, the date text overlaps with time.

  • Fixed: InvalidOperationException occurred while loading OneNote document.

  • Fixed: Argument Exception message while exports of OneNote to PDF format.

  • Fixed: Invalid data error while loading OneNote document.

Aspose.Note for .NET Resources

The resources, you may need to accomplish your tasks: