Browse our Products

Aspose.Diagram for Java 26.6 Release Notes

Improvements and Changes

KeySummaryCategory
DIAGRAMJAVA-51297DiagramException when converting VSD_fileBug

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 Protect in VbaProject

  • Protects or unprotects this VBA project.
    VbaProject vbaProject = diagram.getVbaProject();
    
    //Lock the VBA project for viewing with password.
    vbaProject.protect(true, "11");