Rendering Task Sheet View in PHP
Contents
[
Hide
Show
]Aspose.Tasks - Rendering Task Sheet View
To render Task Sheet View using Aspose.Tasks Java for PHP, simply invoke RenderTaskSheetView module. Here you can see example code.
1$project = new Project('test_tasks.mpp');
2$options = new PdfSaveOptions();
3$presentationFormat = new PresentationFormat();
4$options->setPresentationFormat($presentationFormat->TaskSheet);
5$project->save("taskSheet.pdf", $options);
6print "Created task sheet view file.";
Download Running Code
Download Rendering Task Sheet View (Aspose.Tasks) from any of the below mentioned social coding sites: