Browse our Products

Aspose.Diagram for .NET 25.11 Release Notes

Improvements and Changes

KeySummaryCategory
DIAGRAMNET-53808Image conversion issue with LinuxEnhancement
DIAGRAMNET-53810VSD to PDF - Text is getting wrapped as compared to Office Export to PDFEnhancement
DIAGRAMNET-53822Give setting to make the AddShape() method even fasterEnhancement
DIAGRAMNET-53823Invalid shape Height, WidthBug
DIAGRAMNET-53824After converting .vsdx to .svg two elements in the diagram were corruptedBug
DIAGRAMNET-53826Converting from vsdx to svg takes a lot of timeBug
DIAGRAMNET-53827Container Styling IssueBug

Public API and Backward 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 it on the Aspose.Diagram support forum.

Adds AddShape(double pinX, double pinY, string masterName,bool isCalculate) in Page

  • Adds shape created by master on page with defined PinX and PinY.
long shapeId = page.AddShape(5, 5, master.Name, false);

Adds CalculateOptions in Diagram

  • Represents options for calculation.
CalculateOptions o = new CalculateOptions();
o.Type = Aspose.Diagram.CalculateItemType.XForm;
shape.RefreshData(o);