Browse our Products

Aspose.Diagram for .NET 17.6 Release Notes

Improvements and Changes

KeySummaryCategory
DIAGRAMNET-51264The shadow of shapes is black on converting a VSDM to SVGEnhancement
DIAGRAMNET-51270Cannot see a shape of the VSDX in Visio ViewerEnhancement
DIAGRAMNET-51273Incorrect display of shape in the Visio Viewer 2013Enhancement
DIAGRAMNET-51249The incorrect appearance of the curved line connecting in VSDMBug
DIAGRAMNET-51250An additional left parenthesis is added in text on converting a VSD to PDFBug
DIAGRAMNET-51251The size of the icon is downgraded on converting a VSDM to SVGBug
DIAGRAMNET-51253Incorrect color of text and borders in shapes when converting a VSDM to SVGBug
DIAGRAMNET-51255An image at the bottom has been squashed on converting a VSDM to SVGBug
DIAGRAMNET-51258Open and save routine of VSDM - the length of the walls is changedBug
DIAGRAMNET-51259Open and save routine of VSDM - the length of the walls is changedBug
DIAGRAMNET-51260Index out range error occurred on calling the layout method of Diagram classBug
DIAGRAMNET-51263An additional red color tag appears on converting a VSDM to SVGBug
DIAGRAMNET-51265The font of title text is changed on converting a VSDM to SVGBug
DIAGRAMNET-51266The size of background image is reduced to converting a VSDM to SVGBug
DIAGRAMNET-51267An icon size is downgraded on converting a VSDM to SVGBug
DIAGRAMNET-51268Retrieves incorrect transparency value of an image from VSDM drawingBug
DIAGRAMNET-51269Add virtualization protectionBug

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 RefreshData Member in the Shape Class

The RefreshData method of the Shape class instance refreshes shape’s data, including XForm, TextXForm, Connection and Geom, after changing the shape’s text or others.

 // Load diagram

Diagram diagram = new Diagram(@"c:\temp\3DShape_Rotation.vsdx");

// get page by name

Aspose.Diagram.Page page = diagram.Pages.GetPage("Page-1");

// get shape by ID

Aspose.Diagram.Shape shape = page.Shapes.GetShape(1);

// set PinX and PinY values

shape.XForm.PinX.Value = 5;

shape.XForm.PinY.Value = 5;

// save diagram to VSDX format

diagram.Save(@"c:\temp\3DShape_Rotation_Out.vsdx", SaveFileFormat.VSDX);


 
 English