Browse our Products

Aspose.Diagram for .NET 18.1 Release Notes

Improvements and Changes

KeySummaryCategory
DIAGRAMNET-50494Add support to duplicate / clone a diagram pageEnhancement
DIAGRAMNET-51057The command button is missing after removing a page from VSDMEnhancement
DIAGRAMNET-51422VSDX to PDF - the shadows are being ignored on process shapesEnhancement
DIAGRAMNET-50467VSD to PDF conversion, the company corporate logo is misplacedBug
DIAGRAMNET-50469VSD to PDF conversion, the radio shape text is slightly up than usualBug
DIAGRAMNET-51199Title text is not aligned on saving a VSDM to SVGBug
DIAGRAMNET-51388Issues with vsdx files loading and savingBug
DIAGRAMNET-51398VSD to PNG - the text position is incorrectBug
DIAGRAMNET-51407VSD to JPEG - the text items are misplacedBug
DIAGRAMNET-51419Shapes are not resized properly in vsdx fileBug
DIAGRAMNET-51420VSDX file gets corrupted after loading and savingBug
DIAGRAMNET-51421VSDX to PDF - incorrect font color of the textBug

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 Copy member in Page class

The Copy member takes a target page instance, as a parameter to clone this page.

 // import diagram

Diagram diagram = new Diagram(dataDir + "Drawing1.vsdx");

Page newPage = new Page(1);

// copy diagram

newPage.Copy(diagram.Pages[0]);

Usage Examples

Please check the list of help topics added in the Aspose.Diagram Wiki docs: 

  1. Copy Visio Page to another Page instance


 
 English