Aspose.Diagram for Java 18.3 Release Notes

Improvements and Changes

KeySummaryCategory
DIAGRAMJAVA-50592Add support of the NewValue processing instructionsEnhancement
DIAGRAMJAVA-50150Can’t access shape TabsCollection objectsBug
DIAGRAMJAVA-50588Output VSDX - a large sized shape is addedBug
DIAGRAMJAVA-50593VSDX to SVG - incorrect text and background colorsBug
DIAGRAMJAVA-50595Diagram turns to black and white when saving VSDX documentBug

Adds moveTo member in Page class

The moveTo member takes the target page index as a parameter to move the position of page in the Visio drawing.

 // import diagram

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

Page newPage = new Page(1);

// move page in the diagram

newPage.moveTo(2);

diagram.save(dataDir + "Drawing1.vsdx", SaveFileFormat.VSDX);

Usage Examples

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

  1. [Move Page position in the Visio drawing]