We are pleased to announce the release of Aspose.Note for .NET 16.11.0. This month’s release introduces new features and enhancements that further enrich the API functionality. It includes new features of working with password protected OneNote documents and Notebooks. It also fixes several bugs that further stabilizes the API functionality. To get an idea about what is new and fixed, please visit our documentation section for release notes of this month’s version.

New Features and Enhancements

Support for Creating Password Protected OneNote Documents: In our earlier versions, the API introduced the capability of reading password protected OneNote documents. With this month’s release, the API now provides the capability to create password protected OneNote documents. This is achieved using the OneSaveOptions class by specifying the DocumentPassword property as shown in the following code sample.

Document document = new Document();

document.Save("doc.one", new OneSaveOptions() { DocumentPassword = "pass" }); 

Support for Password Protected Documents as Part of OneNote Notebooks: This month’s release extends the feature of password protected OneNote documents to Notebooks as well. This feature allows to load and save notebook files with password protected children. This, however, needs deferred loading of the notebook file and apply the document password using the OneSaveOptions class.

Setting Background Color of Table Cell: This month’s release also enhances the functionality of working with Table cells by providing the capability to set background color of a table’s cell. The BackgroundColor property of the TableCell class can be used to set the color of a table cell.

Loading and Saving of Notebook to Stream: This month’s release also provides the capability to load and save notebook to stream. This has been implemented by providing new constructor of Notebook class and overloaded Save method. The child documents of the notebook also need to be saved/loaded from child object’s stream and populated in Document class.

Other Improvements

This month’s release also fixes a number of bugs related to API functionality that further improves the API stability in terms of features and quality.

API Resources

You can get started with Aspose.Note for .NET by making use of information available in the following.

API Documentation – Helps getting started with the API using code samples and examples

Forum Support – Post your inquiries to get help from our technical support team

Examples – Try the ready-to-use examples of the API by downloading from our GitHub repository

API Reference Guide – Provides information about all the namespaces, classes and properties of the API