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.Words for .NET 23.1 (DLLs only)

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 84.55MB
  • Date Added:
  • 6/1/2023

Description

This ZIP file contains the Aspose.Words for .NET and .NET Standard 2.0 assemblies. The assemblies are the same as in the MSI installer of the product of the same version. Download this if you want to use Aspose.Words without the MSI installer, for example because you cannot run MSI installers on Mono.

File Details

Generate Table of Content for eBook Navigation

Dynamically add Table of Contents (TOC) to AZW3/MOBI files using C# API. Improve content navigation in e-books within your .NET Apps.

Improve Metafile Operations: GDI+ Option in C# API

Optimize rendering for your apps with better metafile raster operations using C# API. Benefit from enhanced GDI+ emulation in raster processes.

Customize Shading with Theme Colors

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:

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.