Aspose.Diagram for Node.js via Java 22.10 Release Notes

Improvements and Changes

KeySummaryCategory
DIAGRAMJAVA-51028setTopPage not workingEnhancement
DIAGRAMJAVA-51035wk: Geoms property for some Sheet shapes is not resolved correctlyEnhancement
DIAGRAMJAVA-51030.getName() is sometimes different than names in Visio (Aspose.Diagram Java 22.9, .vsd files)Bug
DIAGRAMJAVA-51033.getText() is sometimes different than shape.Text in Visio (Aspose.Diagram Java 22.9, .vsd files)Bug
DIAGRAMJAVA-51038When the text contains line breaks, recalculating the width of the text is incorrectBug
DIAGRAMJAVA-51040.getNameU() is sometimes empty (Aspose.Diagram Java 22.9, .vsd files)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 getDisplayText in Shape

  • Get the text displayed on the interface
string text = shape.getDisplayText();

Adds getInheritGeoms in Shape

  • Contains the Geoms values for the shape inherit by the master shape.
int count = shape.getInheritGeoms().get(0).getCoordinateCol().getCount();