製品を閲覧する Toggle navigation
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.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
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 リリースノート.