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.
Added ability to set distance between table and surrounding text
Now customize the Table class with properties to control distances from surrounding text:
Table
table.DistanceLeft
table.DistanceRight
table.DistanceTop
table.DistanceBottom
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*
Improvements in Chart class has been mode for Combo charts.
Chart
The following changes have been implemented:
ChartSeriesCollection
Chart.Series
ChartAxisCollection
Chart.Axes
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");
For a complete list of features, enhancements, and bug fixes in this release please visit, Aspose.Words for .NET 23.4 Release Notes.