Browse our Products 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.
Il y avait un problème de couleur d’arrière-plan non valide pour le tableau. Dans cette version, le problème a été résolu. Désormais, la couleur d’arrière-plan du tableau dans le document Microsoft OneNote® peut être appliquée à n’importe quel problème à l’aide de notre API.
L’exemple de code C# suivant montre comment attribuer une couleur d’arrière-plan à une cellule individuelle du tableau de documents OneNote® via l’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);
Pour une liste complète des fonctionnalités, améliorations et corrections de bogues de cette version, veuillez consulter Aspose.Note for .NET 22.7 Release Notes.