浏览我们的产品

Aspose.Diagram for .NET 17.6 发行说明

改进和变化

钥匙概括类别
DIAGRAMNET-51264The shadow of shapes is black on converting a VSDM to SVG强化
DIAGRAMNET-51270在 Visio 查看器中看不到 VSDX 的形状强化
DIAGRAMNET-51273Visio Viewer 2013 中的形状显示不正确强化
DIAGRAMNET-51249VSDM 中连接曲线的不正确外观漏洞
DIAGRAMNET-51250An additional left parenthesis is added in text on converting a VSD to PDF漏洞
DIAGRAMNET-51251The size of the icon is downgraded on converting a VSDM to SVG漏洞
DIAGRAMNET-51253Incorrect color of text and borders in shapes when converting a VSDM to SVG漏洞
DIAGRAMNET-51255An image at the bottom has been squashed on converting a VSDM to SVG漏洞
DIAGRAMNET-51258VSDM的打开和保存例程——墙的长度改变了漏洞
DIAGRAMNET-51259VSDM的打开和保存例程——墙的长度改变了漏洞
DIAGRAMNET-51260调用 Diagram 类的布局方法时发生索引超出范围错误漏洞
DIAGRAMNET-51263An additional red color tag appears on converting a VSDM to SVG漏洞
DIAGRAMNET-51265The font of title text is changed on converting a VSDM to SVG漏洞
DIAGRAMNET-51266The size of background image is reduced to converting a VSDM to SVG漏洞
DIAGRAMNET-51267An icon size is downgraded on converting a VSDM to SVG漏洞
DIAGRAMNET-51268从 VSDM 绘图中检索图像的不正确透明度值漏洞
DIAGRAMNET-51269添加虚拟化保护漏洞

公共 API 和向后不兼容的更改

以下是对公众 API 所做的任何更改的列表,例如添加、重命名、删除或弃用成员,以及对 Aspose.Diagram for .NET 所做的任何非向后兼容更改。如果您对列出的任何更改有疑虑,请在这Aspose.Diagram 支持论坛.

在 Shape 类中添加 RefreshData 成员

Shape 类实例的 RefreshData 方法在更改形状的文本或其他内容后刷新形状的数据,包括 XForm、TextXForm、Connection 和 Geom。

 // 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);


 
 简体中文