Aspose.Diagram for Python via Java 22.12 Release Notes
Contents
[
Hide
]
This page contains release notes information for Aspose.Diagram for Python via Java 22.12.
Improvements and Changes
Key | Summary | Category |
---|---|---|
DIAGRAMJAVA-51061 | new feature for draw line with multiple points for java | Enhancement |
DIAGRAMJAVA-51055 | Unexpected output sent to STDOUT when loading Visio file | Bug |
DIAGRAMJAVA-51064 | Wrong shape appearance with new jar file (aspose-diagram-22.11) | Bug |
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.
Adds ungroup in Shape
- Ungroup Shape
shape.ungroup();
Adds drawLine in page
- The process of drawing line.
double[] xy = new double[] { 0, 0, 0.5, 0.5, 0.5, 0, 0, 0 };
long shapeId2 = page.drawLine(1, 1, 1, 1, xy);
Adds drawPolyLine in page
- The process of drawing Polyline.
double[] xy = new double[] { 0, 0, 0.5, 0.5, 0.5, 0, 0, 0 };
long shapeId2 = page.drawPolyLine(1, 1, 1, 1, xy);