Aspose.Diagram for .NET 18.1 发行说明

改进和变化

钥匙概括类别
DIAGRAMNET-50494添加对复制/克隆 diagram 页面的支持强化
DIAGRAMNET-51057从 VSDM 中删除页面后命令按钮丢失强化
DIAGRAMNET-51422VSDX to PDF - the shadows are being ignored on process shapes强化
DIAGRAMNET-50467VSD to PDF conversion, the company corporate logo is misplaced漏洞
DIAGRAMNET-50469VSD to PDF conversion, the radio shape text is slightly up than usual漏洞
DIAGRAMNET-51199Title text is not aligned on saving a VSDM to SVG漏洞
DIAGRAMNET-51388vsdx 文件加载和保存的问题漏洞
DIAGRAMNET-51398VSD to PNG - the text position is incorrect漏洞
DIAGRAMNET-51407VSD to JPEG - the text items are misplaced漏洞
DIAGRAMNET-51419vsdx 文件中的形状未正确调整大小漏洞
DIAGRAMNET-51420VSDX 加载和保存后文件损坏漏洞
DIAGRAMNET-51421VSDX to PDF - incorrect font color of the text漏洞

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

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

在 Page 类中添加 Copy 成员

Copy 成员采用目标页面实例作为参数来克隆此页面。

 // import diagram

Diagram diagram = new Diagram(dataDir + "Drawing1.vsdx");

Page newPage = new Page(1);

// copy diagram

newPage.Copy(diagram.Pages[0]);

使用示例

请查看 Aspose.Diagram Wiki 文档中添加的帮助主题列表:

  1. 将 Visio Page 复制到另一个 Page 实例