Browse our Products
Aspose.Diagram for Java 21.3 Release Notes
This page contains release notes information for Aspose.Diagram for Java 21.3.
Improvements and Changes
Key | Summary | Category |
---|---|---|
DIAGRAMJAVA-50711 | NullPointerException throws when try to save VDX document as PNG | Enhancement |
DIAGRAMJAVA-50713 | Text overlapping issue when converting VSDX to PDF | Enhancement |
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 Java. If you have concerns about any change listed, please raise it on the Aspose.Diagram support forum.
Added ConnectShapesViaConnector in Page
- Connect shapes via connector.
page.connectShapesViaConnector(id, "Port7", id, "Port21", id);
Adds GlueShapeToConnectorBeginX in Page
- Glue Shape using BeginX
page.glueShapeToConnectorBeginX(id, "Port7", id);
Adds GlueShapeToConnectorEndX in Page
- Glue Shape using BeginX
page.glueShapeToConnectorEndX(id, "Port21", id);
Adds CenterDrawing in Page
- Centers a page’s shapes with respect to the extent of the page.
page.centerDrawing();
Adds IsContain in Shape
- Indicates whether this shape is contain another shape.
OLE_Shape.isContain(shape)