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.4

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 85.65MB
  • Date Added:
  • 4/4/2023

Description

It contains Aspose.Words for .NET 23.4 MSI installer.

File Details

Customize Table Styling using API

Added ability to set distance between table and surrounding text

Now customize the Table class with properties to control distances from surrounding text:

The following C# sample code demonstrates how to set the distance between table and its surrounding text (in Points) using API:

Document doc = new Document("input.docx");
Table table = doc.FirstSection.Body.Tables[0];

// Set distance between table and surrounding text.
table.DistanceLeft = 24;
table.DistanceRight = 24;
table.DistanceTop = 3;
table.DistanceBottom = 3;

doc.Save("output.docx");

Source*

Combo Chart Improvements

Improvements in Chart class has been mode for Combo charts.

The following changes have been implemented:

Please check the following C# sample code to learn how to work with series and axes of a combo chart in DOCX using API:

Document doc = new Document("ComboChart.docx");
NodeCollection shapes = doc.GetChildNodes(NodeType.Shape, true);
Chart chart = ((Shape)shapes[0]).Chart;

// Show markers in the line series named 'Series 3'.
foreach (ChartSeries series in chart.Series)
{
    if (series.Name == "Series 3")
    {
        series.Marker.Symbol = MarkerSymbol.Circle;
        series.Marker.Size = 18;
        break;
    }
}

// Hide the major grid lines on the primary and secondary Y axes.
foreach (ChartAxis axis in chart.Axes)
{
    if (axis.Type == ChartAxisType.Value)
        axis.HasMajorGridlines = false;
}

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.4 Release Notes.

 English