製品を閲覧する 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 public 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 にアクセスしてください。