Browse our Products

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.

 

Aspose.Tasks for .NET 22.1

Download  Support Forum 

File Details

  • Downloads:
  • 4
  • File Size:
  • 25.0 MB
  • Posted By:
  • vasiliysinitsyn
  • Views:
  • 38
  • Date Added:
  • 1/14/2022

Release Notes

Description

It contains MSI with Aspose.Tasks for .NET 22.1 release.

File Details

Display Project Summary

Improved the project display options by ShowProjectSummaryTask public API that displays the summary information of a project.

Better Time Scale Rendering

Fixed the issue of project time scale rendering to fit it to page’s width. The Timescale enumeration and property are handy in specifying how to render the timescale in Gantt Chart, Task / Resource Usage views while exporting the project into a graphic format.

The following C# code sample demonstrates how to set the MPP project time period to its minimal while rendering as JPEG via API:

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

For a complete list of features, enhancements, and bug fixes in this release please visit, Aspose.Tasks for .NET 22.1 Release Notes.

 English