Browse our Products

If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.

 

Aspose.Note for .NET 22.7

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 118.11MB
  • Date Added:
  • 15/7/2022

File Details

Improved OneNote® Table Background Color Setting

There was an issue of invalid background color for Table. In this release the issue has been fixed. Now the Table background color within the Microsoft OneNote® document can be applied with any issue using our API.

The following C# code sample demonstrates how to assign background color to an individual cell of OneNote® document table via API:

// Create an object of the Document class
Document doc = new Document();
// Initialize Page class object
Aspose.Note.Page page = new Aspose.Note.Page(doc);

// Initialize TableRow class object
TableRow row1 = new TableRow(doc);
// Initialize TableCell class object and set text content
TableCell cell11 = new TableCell(doc);
cell11.AppendChildLast(InsertTable.GetOutlineElementWithText(doc, "Small text"));
cell11.BackgroundColor = Color.Coral;
row1.AppendChildLast(cell11);  

For a complete list of features, enhancements, and bug fixes in this release please visit, Aspose.Note for .NET 22.7 Release Notes.

 English