Browse our Products

Aspose.Diagram for Java 18.1 Release Notes

Improvements and Changes

KeySummaryCategory
DIAGRAMJAVA-50200Add support to duplicate / clone a diagram pageEnhancement
DIAGRAMJAVA-50408An error occurred after removing a page from VSDMBug
DIAGRAMJAVA-50577VDX to VSDM - the connecting lines are not properly connectedBug
DIAGRAMJAVA-50578VDX to VSDM - the connecting lines are not properly connectedBug
DIAGRAMJAVA-50579Output VDX - placing all Visio shapes on the concurrent pointBug
DIAGRAMJAVA-50580Output VDX - incorrect layout of the shapesBug

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 page

newPage.copy(diagram.getPages().get(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