Rendering Resource Sheet View
Contents
[
Hide
Show
]Microsoft Project’s Resource Sheet view provides details about all a project’s resources. Resource information such as name, type, standard and overtime rates, costs, and calendar can be viewed using this view. Aspose.Tasks for C++ API supports rendering the Resource Sheet to PDF using the PresentationFormat enumerator.
Rendering Resource Sheet View
The code snippet in this article reads a source MPP file that has a number of resources and renders these to output PDF using the following steps:
- Create an instance of Project Reader.
- Read the source MPP file.
- Set the PresentationFormat to ResourceSheet.
- Render the project to output PDF.
1// Create project instance
2System::SharedPtr<Project> project1 = System::MakeObject<Project>(dataDir + u"ResourceSheetView.mpp");
3
4// Set the Presentation Format to Resource Sheet
5PresentationFormat format = Aspose::Tasks::Visualization::PresentationFormat::ResourceSheet;
6
7// Define rendering options
8System::SharedPtr<SaveOptions> options = System::MakeObject<PdfSaveOptions>();
9options->set_PresentationFormat(format);
10project1->Save(dataDir + u"ResourceSheetView_out.pdf", options);