Aspose.Diagram for .NET 19.8 Release Notes

Improvements and Changes

KeySummaryCategory
DIAGRAMNET-50334Add support of VBA codes / Macros (add - edit - delete)Enhancement
DIAGRAMNET-51083Add support of drawing SplineEnhancement
DIAGRAMNET-51676Visio to HTML - output contains filename in itEnhancement
DIAGRAMNET-50263Can’t set connector text location as formulaeBug
DIAGRAMNET-50284VTX to HTML conversion, shapes fill color is not preservedBug
DIAGRAMNET-50432VDX to PDF conversion, Diagram.setFontDirs method use only first font over the whole diagramBug
DIAGRAMNET-50463VSDX to PDF conversion, missing or incomplete shapes renderingBug
DIAGRAMNET-51033The network shapes are not being preserved on converting a VSDX to PDFBug
DIAGRAMNET-51303VSDX to PDF - the color of text on connecting lines is changedBug
DIAGRAMNET-51663An unhandled exception occurs while converting VSD to VSDXBug
DIAGRAMNET-51664The file is getting corrupted after removing an unused themeBug
DIAGRAMNET-51665Images are shown as X after removing unused themesBug
DIAGRAMNET-51667While removing Styles only an image has a problemBug
DIAGRAMNET-51668VISIO to JPG - output image is not in the correct formatBug
DIAGRAMNET-51671While removing unused master shapes and styles only the image has a problemBug
DIAGRAMNET-51672Lost pictures on load and saveBug
DIAGRAMNET-51677Visio to HTML - Link in generated HTML does not workBug
DIAGRAMNET-51678Visio to HTML - Date Format incorrect when saving as HTMLBug
DIAGRAMNET-51679Visio to PDF - Several formatting errors in PDFBug

Public API and Backwards Incompatible Changes

The following is a list of any changes made to the public API such as added, renamed, removed or deprecated members as well as any non-backward compatible change made to Aspose.Diagram for .NET. If you have concerns about any change listed, please raise them in the Aspose.Diagram support forum.

Adds DrawSpline in Page

The following code snippet shows how to draw spline:

 PointF[] ps = new PointF[] { new PointF(0, 0.3270758925347308f), 

                             new PointF(0.2926845121364643f, 0.3581517392187368f), 

                             new PointF(0.6526026522346893f, 0.4640748257705201f), 

                             new PointF(1f, 0.327075892534732f) };

                             diagram.Pages[0].DrawSpline(1, 1, 2, 2, ps);

Adds SaveTitle in HTMLSaveOptions

The following code snippet defines whether or not you want to save the title:

 Aspose.Diagram.Saving.HTMLSaveOptions options = new Aspose.Diagram.Saving.HTMLSaveOptions();

options.SaveTitle = false;