浏览我们的产品 Toggle navigation
If so you can download any of the below versions for testing. The product will function as normal except for an evaluation limitation. At the time of purchase we provide a license file via email that will allow the product to work in its full capacity. If you would also like an evaluation license to test without any restrictions for 30 days, please follow the directions provided here.
If you experience errors, when you try to download a file, make sure your network policies (enforced by your company or ISP) allow downloading ZIP and/or MSI files.
通过显示项目摘要信息的 ShowProjectSummaryTask 公共 API 改进了项目显示选项。
修复了项目时间比例渲染的问题,使其适合页面的宽度。时间刻度 enumeration 和 property 可以方便地指定如何在甘特图、任务/资源使用视图中呈现时间刻度,同时将项目导出为图形格式。
以下 C# 代码示例演示了如何在通过 API 呈现为 JPEG 时将 MPP 项目时间段设置为最小:
var project = new Project(DataDir + "Project2.mpp"); // Save to one page image (Timescale.days by default) project.Save(OutDir + "NewProductDevDays_out.jpeg", new ImageSaveOptions(SaveFileFormat.Jpeg)); // Save to one page image (Timescale.ThirdsOfMonths) var options = new ImageSaveOptions(SaveFileFormat.Jpeg) { Timescale = Timescale.ThirdsOfMonths }; project.Save(OutDir + "NewProductDevThirdsOfMonths_out.jpeg", options); // Save to one page image (Timescale.Months) options.Timescale = Timescale.Months; project.Save(OutDir + "NewProductDevMonths_out.jpeg", options);
有关此版本中的功能、增强功能和错误修复的完整列表,请访问 Aspose.Tasks for .NET 22.1 Release Notes。