Browse our Products

Aspose.Diagram for .NET 18.3 Release Notes

Improvements and Changes

KeySummaryCategory
DIAGRAMNET-50147VSD to XPS conversion, the empty pages are created having red cross imagesEnhancement
DIAGRAMNET-51431Add MoveTo method for Pages collectionEnhancement
DIAGRAMNET-50424  VSDX to PDF conversion, the icon is overlying the textBug
DIAGRAMNET-50459VSDX to PDF conversion, shape icon is misplaced from its original positionBug
DIAGRAMNET-50460VSDX to PDF conversion, shape icon is misplaced from its original positionBug
DIAGRAMNET-50674All HTML resources are not saved at the custom pathBug
DIAGRAMNET-51403VSD to image - the arrow heads are misplacedBug
DIAGRAMNET-51427Output VSDX - the controls in Shapes do not workBug
DIAGRAMNET-51429Fix Product Page URL over NuGet GalleryBug
DIAGRAMNET-51432Open and save routine of VSDX does not preserve font cellBug
DIAGRAMNET-51433Cannot retrieve all shape names from a VSDX drawingBug

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 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);

Usage Examples

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

  1. Move Page position in the Visio drawing


 
 English