Browse our Products

Aspose.Words for C++ 23.1 Release Notes

Major Features

There are 75 improvements and fixes in this regular monthly release. The most notable are:

  • Significantly improved performance and quality of emulation of raster operations with metafiles.
  • Implemented an ability to work with shading theme colors.
  • Added the ability to generate TOC (table of contents) for AZW3 documents.
  • Provided the way to control how the list items are exported to the Markdown format.
  • Added support of R-squared coefficient in DML charts trendline labels when rendering.

Full List of Issues Covering all Changes in this Release

Public API and Backward Incompatible Changes

This section lists public API changes that were introduced in Aspose.Words 23.2. It includes not only new and obsoleted public methods, but also a description of any changes in the behavior behind the scenes in Aspose.Words which may affect existing code. Any behavior introduced that could be seen as regression and modifies the existing behavior is especially important and is documented here.

Added Font property to ChartDataLabel and ChartDataLabelCollection classes

The Font property has been added to the ChartDataLabel and ChartDataLabelCollection classes:

class ChartDataLabel
{
/// Provides access to the font formatting of this data label.
System::SharedPtr<Aspose::Words::Font> get_Font();
...
}

class ChartDataLabelCollection
{
/// Provides access to the font formatting of the data labels of the entire series.
System::SharedPtr<Aspose::Words::Font> get_Font();
...
}