Aspose.Diagram for .NET 22.3 Release Notes

Improvements and Changes

KeySummaryCategory
DIAGRAMNET-52667shape.RefreshShape() is not working to reflect changed BeginY valueEnhancement
DIAGRAMNET-52668Geometry NoShow Formula Results Not UpdatedEnhancement
DIAGRAMNET-52655App:loading vsd of old version and saving to pdf throws exceptionBug
DIAGRAMNET-52661No example of adding watermark to visio is given in documentationBug
DIAGRAMNET-52663Detect custom line styles for shape with null masterBug
DIAGRAMNET-52666Visio to Pdf conversion - Problem with Data Graphics [Cont.]Bug
DIAGRAMNET-52684Exception when export to HTMLBug
DIAGRAMNET-52685Exception when export to HTMLBug
DIAGRAMNET-52692Diagram.Save to MemoryStream using PDF Format Throws a System.NullReferenceExceptionBug

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

Adds AddText in Page

  • Adds Text with defined PinX and PinY.
double pinx = page.PageSheet.PageProps.PageWidth.Value / 2;
double piny = page.PageSheet.PageProps.PageHeight.Value / 2;
double width = page.PageSheet.PageProps.PageWidth.Value;
double height = page.PageSheet.PageProps.PageHeight.Value;
Shape shape = page.AddText(pinx, piny, width, height, "Test text", "Calibri", "#a5a5a5", 0.25);