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.
Dynamically add Table of Contents (TOC) to AZW3/MOBI files using C# API. Improve content navigation in e-books within your .NET Apps.
Optimize rendering for your apps with better metafile raster operations using C# API. Benefit from enhanced GDI+ emulation in raster processes.
This new feature allows your App end-users to tailer their document styling. Explore new properties in C# API for working with shading theme colors. Customize foreground and background patterns effortlessly.
The Shading class has the following new public properties:
Shading
ForegroundPatternThemeColor
BackgroundPatternThemeColor
The following C# sample code demonstrates how to customize and set the theme colors and shading intensity of a DOCX file using API:
Document doc = new Document("c:\Documents\TestDocument.docx"); Shading shading = doc.FirstSection.Body.FirstParagraph.ParagraphFormat.Shading; // Gets and sets the values of theme colors. if (shading.ForegroundPatternThemeColor == ThemeColor.Accent1) shading.ForegroundPatternThemeColor = ThemeColor.Dark1; if (shading.BackgroundPatternThemeColor == ThemeColor.Accent2) shading.BackgroundPatternThemeColor = ThemeColor.Dark2; // Gets and sets the lightens values. if (shading.ForegroundTintAndShade == 0) shading.ForegroundTintAndShade = 0.5; if (shading.BackgroundTintAndShade == 0) shading.BackgroundTintAndShade = -0.2; doc.Save("output.docx");
Source*
For a complete list of features, enhancements, and bug fixes in this release please visit, Aspose.Words for .NET 23.1 Release Notes.