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 22.7

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 94.75MB
  • Date Added:
  • 4/7/2022

Description

It contains Aspose.Words for .NET 22.7 release

File Details

Glyph Outlines Parsing for OpenType (CFF) Fonts

This API version offers our own mechanism of parsing glyph outlines for OpenType Compact Font Format (CFF) fonts.

DATABASE Fields Support

Added support of the DATABASE fields.

document.FieldOptions.FieldDatabaseProvider = new OleDbFieldDatabaseProvider();
document.UpdateFields();
 
public class OleDbFieldDatabaseProvider : IFieldDatabaseProvider
{
    FieldDatabaseDataTable IFieldDatabaseProvider.GetQueryResult(string fileName, string connection, string query, FieldDatabase field)
    {
        OleDbConnectionStringBuilder connectionStringBuilder = new OleDbConnectionStringBuilder(connection);
        connectionStringBuilder.DataSource = fileName;
 
        using (OleDbConnection oleDbConnection = new OleDbConnection(connectionStringBuilder.ToString()))
        {
            OleDbDataAdapter oleDbDataAdapter = new OleDbDataAdapter(query, oleDbConnection);
            DataTable dataTable = new DataTable();
            oleDbDataAdapter.Fill(dataTable);
 
            return FieldDatabaseDataTable.CreateFrom(dataTable);
        }
    }
}

WCAG 2.0 Support

Implemented the support of Web Content Accessibility Guidelines (WCAG) 2.0 PDF.

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

 English