浏览我们的产品

Aspose.Diagram for .NET 19.2 发行说明

改进和变化

钥匙概括类别
DIAGRAMNET-50009The heart shape is mixed-up when exporting VSD drawing in PDF file format强化
DIAGRAMNET-50010VSD to PDF exports multiple zigzag lines with a concurrent point instead of a single curve line强化
DIAGRAMNET-51257导出图纸时添加对 NUBRS 线的支持强化
DIAGRAMNET-51611无法正确获取 Prop.Prompt.Value强化
DIAGRAMNET-50355曲线导出为直线漏洞
DIAGRAMNET-50702VSDX to PDF export - the curved connectors turn into straight漏洞
DIAGRAMNET-51348VSDX to PDF - Incorrect rendering of letters漏洞
DIAGRAMNET-51399VSD to PNG - the curved line is converted to straight line漏洞
DIAGRAMNET-51448VSD to PNG - the ellipse is missing around the word network漏洞
DIAGRAMNET-51472VSD to PDF - the curved lines are being exported as straight lines漏洞
DIAGRAMNET-51507VSDX to PNG - filled oval shapes are missing in the output漏洞
DIAGRAMNET-51508VSDX to SVG - filled oval shapes are missing in the output漏洞
DIAGRAMNET-51537VSDX to SVG - curved connectors become straight connectors when VSDX is rendered to PDF漏洞
DIAGRAMNET-51540转换后形状边缘变为正方形漏洞
DIAGRAMNET-51577VISIO to SVG - output is not correct漏洞
DIAGRAMNET-51592转换时曲线变为直线漏洞
DIAGRAMNET-51600将 diagram 另存为另一种格式时,直线会变成尖峰漏洞
DIAGRAMNET-51604VSDX to PDF conversion error - black ellipses漏洞
DIAGRAMNET-51605更新 API 参考并添加有关 Shape.SetAngle() 方法的详细信息漏洞
DIAGRAMNET-51610VSDX to SVG - text is not rendering in the correct font漏洞

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

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

在 Shape 中添加 InheritProps

包含由主形状继承的形状的道具。

  foreach (Aspose.Diagram.Prop prop in shape.InheritProps)

{

    Console.WriteLine(prop.Name);

    Console.WriteLine(prop.Label.Value);

    Console.WriteLine(prop.Prompt.Value);

    Console.WriteLine(prop.Type.Value.ToString());

    Console.WriteLine(prop.Value.Val);

    Console.WriteLine(prop.Format.Value);

}


 
 简体中文