Rendering Task Sheet View in PHP

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:

Subscribe to Aspose Product Updates

Get monthly newsletters & offers directly delivered to your mailbox.