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 C++ 24.2 Windows

Download  Support Forum 

File Details

  • Downloads:
  • 1
  • File Size:
  • 197.95MB
  • Date Added:
  • 29/2/2024

Description

It contains Aspose.Tasks for C++ 24.2 Windows-only binaries.

File Details

This Windows-specific release of Aspose.Tasks for C++ 24.2 empowers developers with improved functionalities for handling your project data.

Key Highlights

  • Customize Exported Layouts: Aspose.Tasks for C++ 24.3 gives you more control over how your project information looks when exported. With the new IsPortrait property in SaveOptions, you can now choose between portrait or landscape orientation for your exported PDF, HTML, and image files.
  • Flexible Project Filtering: This update offers more flexibility when defining project filters using the C++ API. We’ve improved the handling of the Filter.Name property length limitations, ensuring you can create filters with descriptive names that suit your needs on Windows.
  • Work with MPP Files: We have addressed specific problems encountered when reading time-phased data and writing interval filter criteria for certain MPP files. This ensures smoother data processing and more accurate filtering capabilities within your Windows applications.
  • Enhanced Stability: This release includes several bug fixes to further improve the reliability of Aspose.Tasks for C++. We’ve fixed issues related to writing filter criteria with field references and the handling of the Filter.ShowRelatedSummaryRows flag for MPP files, which translates to a more stable and robust experience for developers using our API.

Code Example

This C++ code sample demonstrates how to set the page orientation for the output PDF document to portrait mode using the IsPortrait property:

auto project = System::MakeObject<Project>(System::String(u"test.mpp"));
auto saveOptions = System::MakeObject<PdfSaveOptions>();
saveOptions->set_PageSize(PageSize->A4);
saveOptions->set_IsPortrait(true);
project->Save(u"output.pdf", saveOptions);

Source*

Public API and Backwards Incompatible Changes

Added API Members

We have added different new methods and properties in this release which are shared below:

  • Aspose.Tasks.Saving.SaveOptions.IsPortrait
  • Aspose.Tasks.WeekDay.#ctor(Aspose.Tasks.DayType,Aspose.Tasks.WorkingTime[])

Removed API Members

We have removed different methods and properties in this release. Some of which are:

  • Aspose.Tasks.Saving.HtmlSaveOptions.DefaultFontName
  • Aspose.Tasks.Saving.HtmlSaveOptions.FontResolveCallback
  • Aspose.Tasks.Saving.ImageSaveOptions.DefaultFontName
  • Aspose.Tasks.Saving.PdfSaveOptions.DefaultFontName
  • Aspose.Tasks.Saving.PdfSaveOptions.UseProjectDefaultFont

You can view the list of all new features, enhancements, and bug fixes introduced in this release by visiting Aspose.Tasks for C++ 24.2 Release Notes.

 English